1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/facilmap_ynh.git synced 2024-09-03 18:36:07 +02:00

Remove Mapzen

This commit is contained in:
ericgaspar 2021-06-26 23:17:50 +02:00
parent afe7338729
commit 93c2de8532
No known key found for this signature in database
GPG key ID: 574F281483054D44
5 changed files with 5 additions and 18 deletions

View file

@ -5,7 +5,6 @@
is_public=1 is_public=1
ors_token="test" ors_token="test"
mapbox_token="test" mapbox_token="test"
mapzen_token="test"
maxmind_user_id="" maxmind_user_id=""
maxmind_license_key="" maxmind_license_key=""
user_agent="FacilMap (https://facilmap.org/, webmaster@example.org)" user_agent="FacilMap (https://facilmap.org/, webmaster@example.org)"

View file

@ -24,7 +24,7 @@ MAPBOX_TOKEN=__MAPBOX_TOKEN__
# MapZen is used for getting elevation information # MapZen is used for getting elevation information
# Get an API key on https://mapzen.com/developers/sign_up # Get an API key on https://mapzen.com/developers/sign_up
MAPZEN_TOKEN=__MAPZEN_TOKEN__ #MAPZEN_TOKEN=__MAPZEN_TOKEN__
# Maxmind configuration. If specified, the maxmind GeoLite2 database will be downloaded # Maxmind configuration. If specified, the maxmind GeoLite2 database will be downloaded
# for Geo IP lookup (to show the initial map state) and kept in memory. # for Geo IP lookup (to show the initial map state) and kept in memory.

View file

@ -60,8 +60,8 @@
"name": "ors_token", "name": "ors_token",
"type": "string", "type": "string",
"help": { "help": {
"en": "OpenRouteService is used for calculating routes with advanced settings. You can get a token on https://go.openrouteservice.org/", "en": "OpenRouteService is used for calculating routes with advanced settings. You can get a token on https://openrouteservice.org/",
"fr": "OpenRouteService est utilisé pour calculer les routes complexes. Vous pouvez obtenir un token ici: https://go.openrouteservice.org/" "fr": "OpenRouteService est utilisé pour calculer les routes complexes. Vous pouvez obtenir un token ici: https://openrouteservice.org/"
} }
}, },
{ {
@ -72,15 +72,6 @@
"fr": "MapBox est utilisé pour calcluer les routes simples. Vous pouvez obtenir une clé API ici : https://www.mapbox.com/signup/" "fr": "MapBox est utilisé pour calcluer les routes simples. Vous pouvez obtenir une clé API ici : https://www.mapbox.com/signup/"
} }
}, },
{
"name": "mapzen_token",
"type": "string",
"help": {
"en": "MapZen is used for getting elevation information. You can get an API key on https://mapzen.com/developers/sign_up",
"fr": "MapZen est utilisé pour obtenir les informations d'élévation. Vous pouvez obtenir une clé API ici : https://mapzen.com/developers/sign_up"
},
"optional": true
},
{ {
"name": "maxmind_user_id", "name": "maxmind_user_id",
"type": "string", "type": "string",
@ -103,8 +94,8 @@
"name": "user_agent", "name": "user_agent",
"type": "string", "type": "string",
"help": { "help": {
"en": "HTTP requests made by the backend will send this User-Agent header. Fill here the url facilmap will have and your e-mail address.", "en": "HTTP requests made by the backend will send this User-Agent header. Fill here the URL facilmap will have and your e-mail address.",
"fr": "Les requêtes faites par le serveur enveront cette entête User-agent. Remplissez ici l'url de votre instance facilmap et votre adresse email." "fr": "Les requêtes faites par le serveur enveront cette entête User-agent. Remplissez ici l'URL de votre instance facilmap et votre adresse email."
}, },
"example": "FacilMap (https://facilmap.org/, webmaster@example.org)" "example": "FacilMap (https://facilmap.org/, webmaster@example.org)"
} }

View file

@ -33,7 +33,6 @@ user_agent="$YNH_APP_ARG_USER_AGENT"
# APIS TOKENS # APIS TOKENS
ors_token="$YNH_APP_ARG_ORS_TOKEN" ors_token="$YNH_APP_ARG_ORS_TOKEN"
mapbox_token="$YNH_APP_ARG_MAPBOX_TOKEN" mapbox_token="$YNH_APP_ARG_MAPBOX_TOKEN"
mapzen_token="$YNH_APP_ARG_MAPZEN_TOKEN"
maxmind_user_id="$YNH_APP_ARG_MAXMIND_USER_ID" maxmind_user_id="$YNH_APP_ARG_MAXMIND_USER_ID"
maxmind_license_key="$YNH_APP_ARG_MAXMIND_LICENSE_KEY" maxmind_license_key="$YNH_APP_ARG_MAXMIND_LICENSE_KEY"
@ -60,7 +59,6 @@ ynh_app_setting_set --app=$app --key=path --value=$path_url
ynh_app_setting_set --app=$app --key=user_agent --value=$user_agent ynh_app_setting_set --app=$app --key=user_agent --value=$user_agent
ynh_app_setting_set --app=$app --key=ors_token --value=$ors_token ynh_app_setting_set --app=$app --key=ors_token --value=$ors_token
ynh_app_setting_set --app=$app --key=mapbox_token --value=$mapbox_token ynh_app_setting_set --app=$app --key=mapbox_token --value=$mapbox_token
ynh_app_setting_set --app=$app --key=mapzen_token --value=$mapzen_token
ynh_app_setting_set --app=$app --key=maxmind_user_id --value=$maxmind_user_id ynh_app_setting_set --app=$app --key=maxmind_user_id --value=$maxmind_user_id
ynh_app_setting_set --app=$app --key=maxmind_license_key --value=$maxmind_license_key ynh_app_setting_set --app=$app --key=maxmind_license_key --value=$maxmind_license_key

View file

@ -28,7 +28,6 @@ db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
user_agent=$(ynh_app_setting_get --app=$app --key=user_agent) user_agent=$(ynh_app_setting_get --app=$app --key=user_agent)
ors_token=$(ynh_app_setting_get --app=$app --key=ors_token) ors_token=$(ynh_app_setting_get --app=$app --key=ors_token)
mapbox_token=$(ynh_app_setting_get --app=$app --key=mapbox_token) mapbox_token=$(ynh_app_setting_get --app=$app --key=mapbox_token)
mapzen_token=$(ynh_app_setting_get --app=$app --key=mapzen_token)
maxmind_user_id=$(ynh_app_setting_get --app=$app --key=maxmind_user_id) maxmind_user_id=$(ynh_app_setting_get --app=$app --key=maxmind_user_id)
maxmind_license_key=$(ynh_app_setting_get --app=$app --key=maxmind_license_key) maxmind_license_key=$(ynh_app_setting_get --app=$app --key=maxmind_license_key)