All Projects → Emapic → emapic

Emapic / emapic

Licence: AGPL-3.0 license
Open source repository with the source code of the geolocated surveys engine Emapic, developed by the laboratory CartoLAB of the Universidade da Coruña.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects
PLpgSQL
1095 projects

Projects that are alternatives of or similar to emapic

Aphotomanager
Manage local photos on Android: gallery, geotag with photomap, privacy, tags, find, sort, view, copy, send, ... .
Stars: ✭ 164 (+1071.43%)
Mutual labels:  geolocation
Iploc
Fastest IP To Country Library
Stars: ✭ 224 (+1500%)
Mutual labels:  geolocation
React Geolocation
🌎🛰 Declarative geolocation for React
Stars: ✭ 238 (+1600%)
Mutual labels:  geolocation
React Native Android Location Services Dialog Box
React Native Android Location Services Dialog Box
Stars: ✭ 175 (+1150%)
Mutual labels:  geolocation
Ios
OwnTracks' iPhone App
Stars: ✭ 222 (+1485.71%)
Mutual labels:  geolocation
Use Position
🌍 React hook usePosition() for fetching and following a browser geolocation
Stars: ✭ 230 (+1542.86%)
Mutual labels:  geolocation
Geodb
A Persistent Geospatial Database with Geofencing & Google Maps Support
Stars: ✭ 155 (+1007.14%)
Mutual labels:  geolocation
I See You
ISeeYou is a Bash and Javascript tool to find the exact location of the users during social engineering or phishing engagements. Using exact location coordinates an attacker can perform preliminary reconnaissance which will help them in performing further targeted attacks.
Stars: ✭ 246 (+1657.14%)
Mutual labels:  geolocation
Skylift
Wi-Fi Geolocation Spoofing with the ESP8266
Stars: ✭ 223 (+1492.86%)
Mutual labels:  geolocation
Clavin
CLAVIN (Cartographic Location And Vicinity INdexer) is an open source software package for document geoparsing and georesolution that employs context-based geographic entity resolution.
Stars: ✭ 237 (+1592.86%)
Mutual labels:  geolocation
React Geolocated
React Higher-Order Component for using Geolocation API
Stars: ✭ 185 (+1221.43%)
Mutual labels:  geolocation
Weather
Taiwan's Weather Maps! 想查詢每個地方的天氣嗎!?藉由 Google Maps API 的地圖服務,以及中央氣象局網站的天氣預報,讓你快速輕鬆的查詢台灣 368 個鄉鎮的天氣概況!
Stars: ✭ 206 (+1371.43%)
Mutual labels:  geolocation
Proximityhash
Geohashes in proximity
Stars: ✭ 231 (+1550%)
Mutual labels:  geolocation
Shiny geoip
IP to location API service
Stars: ✭ 172 (+1128.57%)
Mutual labels:  geolocation
Timezonefinder
fast python package for finding the timezone of any point on earth (coordinates) offline
Stars: ✭ 242 (+1628.57%)
Mutual labels:  geolocation
Libosmscout
Libosmscout is a C++ library for offline map rendering, routing and location lookup based on OpenStreetMap data
Stars: ✭ 159 (+1035.71%)
Mutual labels:  geolocation
Cartodb
Location Intelligence & Data Visualization tool
Stars: ✭ 2,537 (+18021.43%)
Mutual labels:  geolocation
Cities.json
Cities of the world in Json, based on GeoNames Gazetteer
Stars: ✭ 251 (+1692.86%)
Mutual labels:  geolocation
Asn
ASN / RPKI validity / BGP stats / IPv4v6 / Prefix / URL / ASPath / Organization / IP reputation and geolocation lookup tool / Traceroute server
Stars: ✭ 242 (+1628.57%)
Mutual labels:  geolocation
Mercury
Mercury is a hacking tool used to collect information and use the information to further hurt the target
Stars: ✭ 236 (+1585.71%)
Mutual labels:  geolocation

Logo of Emapic

En español

Emapic

Geolocated surveys engine.

Open Source Love License: AGPL v3 Code Climate

Open source repository with the source code of the geolocated surveys engine Emapic, developed by the laboratory CartoLAB of the Universidade da Coruña. Live version at the website emapic.es.

Current state

Emapic is still in alpha version waiting for more features we consider basic as well as improving some aspects and fixing the bugs it may still have.

Development started in 2014 with a small private prototype, which later evolved to a real web application in 2015.

Technologies used

Server-side code is based on runtime environment Node.js, which uses JavaScript code.

You can check a throrough list of technologies, libraries and other data sources used in our web.

Basic deployment of the application

Prerequisites

For launching Emapic locally you need before starting:

  • git
  • Node.js (>=6.0.0 <14.0) [we recommend using nvm for installing specific versions of Node.js]
  • npm (usually installed along with Node.js)
  • PostgreSQL (>=9.2)
  • PostGIS (>=2.0)

You also need the PostgreSQL module unaccent in order to search through texts with accents and similar signs. This can be easily installed in Debian and derived systems via the postgresql-contrib package.
We strongly encourage to install it, but in case you consider it's not actually required for any reason (e.g. it's a private installation and the user's main language doesn't use accents), you can prevent its use by removing the SQL commands that create and delete it from files db/deploy/extensions.sql and db/revert/extensions.sql, delete its SELECT in db/verify/extensions.sql and remove its reference when creating the text search configuration in db/deploy/extensions.sql.

Although it's disabled by default, if we want the server to automatically scan every uploaded file for virus, we must install ClamAV antivirus. In Debian and derived systems it can be easily installed via the clamav package. We strongly encourage to install its daemon as well, in Debian and derived systems via the clamav-daemon package. Though the application can scan files without the daemon, scanning time sees a big increase, going from what's usually not more than a mere hundredths of a second to more than ten seconds, resulting in laggy responses from the server. The application will automatically use the daemon command instead of the manual one when available. Once we have installed the antivirus, we must remember to download the virus database with the command freshclam and to repeat this process periodically in order to keep it updated. If we have any problems after installing these two packges and updating the virus database, we recommend to check ClamAV installation guide.

We also recommend for developers who wish to work with our code:

  • Sqitch >= 0.9994
    We think the easiest installation method among the ones listed by Sqitch is "Apt + cpanminus".

Application setup

First of all we download Emapic's repository with git and browse into its db folder:

git clone https://github.com/Emapic/emapic.git
cd emapic/db

Database

Database can be restored either by executing a custom script or by using Sqitch. If you don't plan on working with our code or to deploy new updates onto an installed version, we recommend that you use the script because it's way simpler and doesn't require additional tools. In other case, Sqitch is recommended in order to ease the deployment of future database updates.

Script

We browse into the db folder in the repository:

cd db

File db.sh inside that folder is the one used for creating the database. By default it will create a DB named "emapic" and a DB user "emapic" with password "emapic" for accessing it from our application. Lastly, it will insert a test user named "emapic" and with password "emapic" as well for the web application itself. For doing all this, it will access with admin user "postgres", password "postgres" the local PostgreSQL server through default port (5432). This script requires sed to be installed and accessible for making a few replacements in some files. If any of these data is not correct, particularly the ones related to the DB server or the admin user, you must edit the file and change them in its first lines. Next:

./db.sh

DB should be operative once the process has finished.

Sqitch

Sqitch is an application used for database model version management, allowing us to easily deploy or revert changes from different versions.
In order to restore the database with Sqitch, first we enter inside the db folder in the repository:

cd db

Inside this folder we can find file sqitch.conf, which contains the configuration parameters for the database restoration. The fields we should check are:

  • 'uri' inside '[target "emapic"]': here we specify the database connection string. By default it will try to connect with user "postgres", password "postgres" to the database "emapic" in the local PostgreSQL server through the default port (5432).
    If any of these values is wrong, you must modify the connection string using the following format (replace the text strings surrounded by curly brackets with their respective values):

      db:pg://{db_user}:{db_password}@{db_host}:{db_port}/{db_name}
    
  • 'emapic_db_user' inside '[deploy "variables"]', '[verify "variables"]' and '[revert "variables"]': the name of the database user Emapic will use to connect to the database.
    By default, with the value "emapic". If you want to use a different name, you can simply edit this file and change its value, or add the parameter "-s emapic_db_user={emapic_db_user}" to all Sqitch executions, replacing the string surrounded by curly brackets with the desired user name.

  • 'emapic_db_user_pass' inside '[deploy "variables"]': the password of the database user Emapic will use to connect to the database.
    By default, with the value "emapic". You should replace it with a more secure password. In order to change it, you can simply edit this file and change its value, or add the parameter "-s emapic_db_user_pass={emapic_db_user_pass}" to the deploy Sqitch execution, replacing the string surrounded by curly brackets with the desired user name.

Once the Sqitch configuration is complete, we execute:

sqitch deploy

DB should be operative once the process has finished.

This method doesn't add any default user for our application. If we want to do so, we must execute onto our DB the SQL script emapic_test_user.sql, which will add a test with name "emapic" and password "emapic" for logging into the web application itself.

About sqitch.plan changes

Though we try to avoid it, we've had to change some old sqitch commits inside the sqitch.plan file. This causes sqitch to throw an error when trying to deploy new commits into a database that was built with the previous version of those commits. The hash used by sqitch to internally identify these commits is the main cause, as it results into a different value with any change. If this happens to you, there are some strategies for fixing/avoiding the problem:

  • The easiest one is obviously to deploy the database again from scratch, probably your best choice if you have no important Emapic data stored or you don't mind doing a backup and restoring it into a new database. Keep in mind you'll lose your old sqitch log.

  • You can try to do a sqitch rebase up to the updated commits (this amounts to a revert and a redeploy). Again in this case you'll probably have to backup and restore your data if you don't want to lose it (depends on the commits you have to revert).

  • Rename/delete the 'sqitch' schema of your Emapic database, redeploy the database with a different name (or into another database server), backup the sqitch schema of this new database and restore it into the old one. If there are any new commits which weren't applied to your old database, you should apply them manually by executing their deploy sql. This is your best choice if you are an advanced user and can't afford to shutdown the database for a short time or simply don't want to fuss around with big database backups. If you redeploy the database with a different name in the same server, be careful about the Emapic DB user.

Server code

Now you must install the required Node.js packages before launching the application. While being in the repository base folder we execute:

npm install
Installation in 32-bit environments

If we try to install the Node.js packages in a 32-bit environment, we'll probably have some problems regarding the sharp package, used for image resizing. In this case, we can ignore the error, although we should keep in mind that the application will now use Jimp as a fallback package, which has a worse performance when resizing images.

Now we can launch the application with either of these commands:

npm run start
node server.js

Right now we should be able to open our application with any browser through the url https://localhost:3000, and log in through the login page (https://localhost:3000/login) with the default user:

User: emapic
Password: emapic

We also provide other options for launching the application in development environments:

  • For launching the application and having it reload automatically whenever any source code file is modified:
npm run autoreload
  • For launching the application and opening the debugging environment node-inspector (requires having installed either Chrome, Chromium or Opera):
npm run debug
  • Similar to the previous option but allowing us to debug not just Emapic source code but also its dependencies:
npm run debug-full

Configuration

There is no need to change the default configuration in order to launch the application in localhost, enter with user "emapic" and test the survey engine, but you'll have to if you want to set it in a production server or test functionalities which require external services (SMTP & OAuth). We do have to check the application will have the right permissions for modifying the folder where it'll store the files uploaded to it (parameter uploadedFilesFolder inside server). File config.json contains most of the configuration parameters for the application:

Emapic's configuration parameters (app)

Here we have the config parameters that directly affect the Emapic user experience. As of now there are only four:

  • Search language (searchEngineLang)

Main language for the searches done in our surveys gallery, by default in spanish.
They will work mostly the same in both spanish and any "similar" language (french, english, portuguese...), thus we don't recommend changing it if you are not familiar with PostgreSQL search engines¹.

  • Default page size (defaultPageSize)

The number of surveys to show per page by default in their listings.

  • User experience survey frequency (emapicOpinionFreq)

Emapic has a user experience survey about the geolocation process which is shown with a configured probability after answering any survey.
By default it's never shown, and this parameter can have any value between 0 (never show it) and 1 (always show it).

  • Survey ID encryption (surveyIdEncr)

These are the values used for encrypting the numerical id of each survey and translating it to a text string which is how we will identify it in URLs.
You should only change it if for any reason you want text strings with other characters or a different length.

  • Emapic OAuth (oauth)

The configuration parameters for the OAuth2 authentication service provided by Emapic itself. Do not confuse them with the configuration parameters for external OAuth services that is detailed later on. These include a boolean parameter for activating/deactivating the service (active) and the lifetimes for the access token and the refresh token (accessTokenLifetime and refreshTokenLifetime). Both lifetimes accept null as value, which will translate into the default values provided by the library (1 hour for the access token, 2 weeks for the refresh one).

DB connection parameters (db)

The parameters for setting our Emapic DB connection: server (host), port (port), database name (database), database user (user) and its password (password). The file already has the default parameters used in the DB creation script (DB "emapic" in localhost, port 5432, user "emapic" with password "emapic").
DB connection can be configured with the environment variable POSTGRESQL_DB_CONN_STRING as well, by having it contain a connection string with the following format (replace the text strings starting with "db_" with the right values):

postgresql://db_user:db_password@db_host:db_port/db_name

For example, with the default values:

postgresql://emapic:emapic@localhost:5432/emapic

Configuration of external services with geographic component (geoServices)

Here we have the configuration parameters required for external services with geographic component, mainly used by the viewer:

Key for accessing our ipgeolocation account API, which allows us to obtain an approximate position of our users through their IP without having to use the browser's geolocation. It's used whenever that geolocation functionality fails or if the user decides not to use it, in order to provide the users an approximate location from which they can define their position.
If we don't have an account and/or we don't require that approximate position, we can simply leave this field blank and a the application will use a default position at Madrid which the user must edit and set at their actual location.

ID token from our Mapbox account which will allow us to load the satellite layer they offer.
If we don't have an account and/or we don't require that layer, we can simply leave this field blank and it will be ignored.

  • Contact e-mail for Nominatim (nominatimEmail)

E-mail address which will be passed in the requests made to Nominatim.
It can be left blank for testing or controlled environments, but if the application goes public, they advise to specify an e-mail for contacting in case some problem arises or if there happens to be a very high number of requests.

External services OAuth (oAuth)

In order to log in through Google or Facebook you must change the parameters inside the groups oAuth.google and oAuth.facebook respectively. For doing that, we must have an application registered in the developers section of their websites and set in the config file the id and the secret.

Server configuration (server)

The parameters here included are related to the Node.js server configuration:

  • Domain name (domain)

Domain name under which we will serve our application. Needed for the OAuth services' callbacks.
By default with a localhost server value.

  • Server IP address (ipaddr)

IP address through which the server will serve the website.
By default with a localhost server value.
It can also be configured through the environment variable NODEJS_IP.

  • HTTPS port (httpsport)

Port used for listening to HTTPS requests.
Normally it would be port 443, but by default we set an unreserved port for testing purposes in a localhost server.
It can also be configured through the environment variable NODEJS_HTTPS_PORT.

  • HTTP port (httpport)

Port used for listening to HTTP requests, which will be redirected to HTTPS in most cases.
Normally it would be port 80, but by default we set an unreserved port for testing purposes in a localhost server.
It can also be configured through the environment variable NODEJS_HTTP_PORT.

  • «robots.txt» file header (robotsHeader)

It's simply a text that precedes the body of the "robots.txt" file, which is dynamically generated. It doesn't have any actual effect onto the application and we can leave its default value or replace it by any introductory text that we want.

  • Automatic scanning for virus with ClamAV of every file uploaded to the server (autoScanFiles)

Indicates whether the application will scan every uploaded file for virus with ClamAV before actually processing the request. If it finds any suspicious file, request will be terminated and everyfile it uploaded will be deleted. This comes disabled by default. If we want this scan to be automatically performed, we must first install ClamAV onto the local machine (more information onto this in the prerequisites section) and make sure that commands clamscan and/or clamdscan are executable by the user that will launch the Node.js server application. Once the antivirus is configured, we would set this parameter to "true" in order to activate the scanning.

  • Path where files uploaded to the server will be stored (uploadedFilesFolder)

Here we must specify the folder where we want to store all the files uploaded to the server by the users, mainly from the surveys' answers. The application will also create nested folders inside this path when it has to. If the path is not an absolute one, it will be considered relative to the project base folder. By default they will be stored inside the uploaded_files folder which is already included with the project. Whichever path we configure, we must make sure the application will have the required permissions for creating neste folders and files inside it.

  • Encryption secrets (secrets)

The text strings used for encrypting the elements used for keeping and unequivocally communication between Emapic and each web user.
The default values are perfectly valid, though for production environments we encourage you to set different random strings of at least the same length.

  • SSL (ssl)

Here we must specify the route (absolute or relative from the base Emapic folder) of the SSL certificate and private key for our website.
A self-signed certificate is included for testing purposes in a localhost server.

SMTP (smtp)

The outgoing mail server used for sending mails to users in order to activate their accounts or reset their password in case they forgot it.
You must check your e-mail account service in order to activate the SMTP support and then set all the required fields.

Social networks config (social)

Optional parameters related to content sharing through social networks:

  • AddThis sharing widget id (addThisId)

Id of our configured sharing widget in AddThis, which will allow us to include their funcionality Inline Share Buttons without having to edit our code².
That id can be found after configuring our widget, in the page which shows us the code to paste in our page, similar to the following example in which we point the id location with the string {id-addThis}:

    <!-- Go to www.addthis.com/dashboard to customize your tools -->
    <script type="text/javascript" src="https://github.com//s7.addthis.com/js/300/addthis_widget.js#pubid={id-addThis}"></script>

This is a completely optional parameter and if we don't want to use AddThis we can simply leave it empty and instead of their widget we'll have three standard buttons for sharing through Facebook, Twitter and LinkedIn.

  • Configuration of Twitter's via parameter (twitterVia)

Here we can specify an optional Twitter account name in order to link it everytime any content is shared through that social network. If we leave it empty, the parameter will simply be ignored.

  • Configuration of the website name when sharing through social networks (ogSiteName)

This parameter allows us to define a name for our website when sharing through social networks (tag meta «og:site_name»). We can simply leave it blank in order to ignore it when sharing.

This application includes a list of tags which provide info when sharing through social networks that we consider accurate for any installation of Emapic which doesn't alter its current features. Those tags can be found inside files views/partials/base-header.hjs and views/partials/map-header.hjs.

Logs

The application currently generates three types of logs with different information, all of them inside the folder logs and by default with file rotation up to a maximum of 10 and with each entry's info in json format. The log files currently generated are:

  • emapic-problems.log: in this file the application stores all of the warning and error messages it generates. By default the maximum file size is 5MB.

  • emapic-info.log: here it stores all messages with useful info about the normal functioning of the application, like the e-mails it sends, new user sign-ups, automatic processes done in background, etc. By default the maximum file size is 5MB.

  • emapic-requests.log: this file contains info about all the web requests made to the application. By default the maximum file size is 50MB.

Additionally, the application prints on console all the messages, including the debug level ones. If we want to change the configuration of any of these parameters, we can do so inside the file utils/logger.js y modifying the desired transport, which are easily identified by the log file name each one references.

License

Code is published under the GNU AFFERO GPL v3 license (see LICENSE-AGPLv3.md).

Contributions

Reporting issues

You can report bugs or any other issues you find in the application (either in the code itself or in our live version in emapic.es) through GitHub.

When reporting an issue:

  1. Check it has not been already reported.
  2. Try to set a descriptive and brief title.
  3. Detail the steps needed to reproduce the problem.
  4. If you can, say what type of device (smartphone, tablet, desktop computer...), operating system and browser you used (and if you want to be a pro, the browser version 😉).

Team members

If you have any doubt or problem regarding the application, you can contact directly with us:

Emapic twitter | [email protected]


Footnotes

¹: in the future we hope to add a brief guide about how to change the search engine language while also diving a little into this subject.
²: if we want to activate this feature, we should first read AddThis' terms of service in order to make sure we comply with them, and their privacy policy so we understand which data they use and with what purposes.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].