]> git.street.me.uk Git - andy/viking.git/blame - src/osm-traces.c
help/Makefile.am: explicitly list figures.
[andy/viking.git] / src / osm-traces.c
CommitLineData
3e7553ae
GB
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2007, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
4c77d5e0
GB
21#ifdef HAVE_CONFIG_H
22#include "config.h"
23#endif
3e7553ae
GB
24
25#include <stdio.h>
26#include <string.h>
3e7553ae 27#include <errno.h>
36420b5f 28#include <time.h>
3e7553ae
GB
29
30#include <curl/curl.h>
3e7553ae
GB
31#include <curl/easy.h>
32
33#include <glib.h>
34#include <glib/gstdio.h>
4c77d5e0 35#include <glib/gi18n.h>
3e7553ae
GB
36
37#include "viking.h"
38#include "viktrwlayer.h"
39#include "osm-traces.h"
40#include "gpx.h"
41#include "background.h"
843b99df
GB
42#include "preferences.h"
43
9de6196a 44/* params will be osm_traces.username, osm_traces.password */
843b99df
GB
45/* we have to make sure these don't collide. */
46#define VIKING_OSM_TRACES_PARAMS_GROUP_KEY "osm_traces"
47#define VIKING_OSM_TRACES_PARAMS_NAMESPACE "osm_traces."
3e7553ae
GB
48
49/**
50 * Login to use for OSM uploading.
51 */
52static gchar *user = NULL;
53
54/**
55 * Password to use for OSM uploading.
56 */
57static gchar *password = NULL;
58
59/**
60 * Mutex to protect auth. token
61 */
62static GMutex *login_mutex = NULL;
63
8b589250
GS
64/**
65 * Different type of trace visibility.
66 */
67typedef struct _OsmTraceVis_t {
68 const gchar *combostr;
69 const gchar *apistr;
70} OsmTraceVis_t;
71
72static const OsmTraceVis_t OsmTraceVis[] = {
502d25de
GB
73 { N_("Identifiable (public w/ timestamps)"), "identifiable" },
74 { N_("Trackable (private w/ timestamps)"), "trackable" },
75 { N_("Public"), "public" },
76 { N_("Private"), "private" },
8b589250
GS
77 { NULL, NULL },
78};
79
3e7553ae
GB
80/**
81 * Struct hosting needed info.
82 */
83typedef struct _OsmTracesInfo {
84 gchar *name;
85 gchar *description;
86 gchar *tags;
8b589250 87 const OsmTraceVis_t *vistype;
3e7553ae 88 VikTrwLayer *vtl;
ce4bd1cf 89 VikTrack *trk;
3e7553ae
GB
90} OsmTracesInfo;
91
843b99df 92static VikLayerParam prefs[] = {
e6994d8d
RN
93 { VIKING_OSM_TRACES_PARAMS_NAMESPACE "username", VIK_LAYER_PARAM_STRING, VIK_LAYER_GROUP_NONE, N_("OSM username:"), VIK_LAYER_WIDGET_ENTRY, NULL, NULL, NULL },
94 { VIKING_OSM_TRACES_PARAMS_NAMESPACE "password", VIK_LAYER_PARAM_STRING, VIK_LAYER_GROUP_NONE, N_("OSM password:"), VIK_LAYER_WIDGET_PASSWORD, NULL, NULL, NULL },
843b99df
GB
95};
96
3e7553ae
GB
97/**
98 * Free an OsmTracesInfo struct.
99 */
100static void oti_free(OsmTracesInfo *oti)
101{
102 if (oti) {
103 /* Fields have been g_strdup'ed */
104 g_free(oti->name); oti->name = NULL;
105 g_free(oti->description); oti->description = NULL;
106 g_free(oti->tags); oti->tags = NULL;
107
108 g_object_unref(oti->vtl); oti->vtl = NULL;
109 }
110 /* Main struct has been g_malloc'ed */
111 g_free(oti);
112}
113
624318ca 114static const gchar *get_default_user()
51c15f41
GB
115{
116 const gchar *default_user = NULL;
117
118 /* Retrieve "standard" EMAIL varenv */
119 default_user = g_getenv("EMAIL");
120
121 return default_user;
122}
123
3cc57413 124void osm_set_login(const gchar *user_, const gchar *password_)
3e7553ae
GB
125{
126 /* Allocate mutex */
127 if (login_mutex == NULL)
128 {
129 login_mutex = g_mutex_new();
130 }
131 g_mutex_lock(login_mutex);
132 g_free(user); user = NULL;
133 g_free(password); password = NULL;
134 user = g_strdup(user_);
135 password = g_strdup(password_);
136 g_mutex_unlock(login_mutex);
137}
138
3cc57413 139gchar *osm_get_login()
3e7553ae
GB
140{
141 gchar *user_pass = NULL;
142 g_mutex_lock(login_mutex);
143 user_pass = g_strdup_printf("%s:%s", user, password);
144 g_mutex_unlock(login_mutex);
145 return user_pass;
146}
147
843b99df
GB
148/* initialisation */
149void osm_traces_init () {
150 /* Preferences */
d11de0ca 151 a_preferences_register_group ( VIKING_OSM_TRACES_PARAMS_GROUP_KEY, _("OpenStreetMap Traces") );
843b99df
GB
152
153 VikLayerParamData tmp;
154 tmp.s = "";
155 a_preferences_register(prefs, tmp, VIKING_OSM_TRACES_PARAMS_GROUP_KEY);
156 tmp.s = "";
157 a_preferences_register(prefs+1, tmp, VIKING_OSM_TRACES_PARAMS_GROUP_KEY);
158
159}
160
3e7553ae
GB
161/*
162 * Upload a file
36420b5f
RN
163 * returns a basic status:
164 * < 0 : curl error
165 * == 0 : OK
166 * > 0 : HTTP error
167 */
168static gint osm_traces_upload_file(const char *user,
169 const char *password,
170 const char *file,
171 const char *filename,
172 const char *description,
173 const char *tags,
174 const OsmTraceVis_t *vistype)
3e7553ae
GB
175{
176 CURL *curl;
177 CURLcode res;
178 char curl_error_buffer[CURL_ERROR_SIZE];
179 struct curl_slist *headers = NULL;
180 struct curl_httppost *post=NULL;
181 struct curl_httppost *last=NULL;
3e7553ae 182
ffb5a285 183 char *base_url = "http://www.openstreetmap.org/api/0.6/gpx/create";
3e7553ae 184
3cc57413 185 gchar *user_pass = osm_get_login();
3e7553ae 186
36420b5f
RN
187 gint result = 0; // Default to it worked!
188
3e7553ae
GB
189 g_debug("%s: %s %s %s %s %s %s", __FUNCTION__,
190 user, password, file, filename, description, tags);
191
192 /* Init CURL */
193 curl = curl_easy_init();
194
195 /* Filling the form */
196 curl_formadd(&post, &last,
197 CURLFORM_COPYNAME, "description",
198 CURLFORM_COPYCONTENTS, description, CURLFORM_END);
199 curl_formadd(&post, &last,
200 CURLFORM_COPYNAME, "tags",
201 CURLFORM_COPYCONTENTS, tags, CURLFORM_END);
3e7553ae 202 curl_formadd(&post, &last,
8b589250
GS
203 CURLFORM_COPYNAME, "visibility",
204 CURLFORM_COPYCONTENTS, vistype->apistr, CURLFORM_END);
3e7553ae
GB
205 curl_formadd(&post, &last,
206 CURLFORM_COPYNAME, "file",
207 CURLFORM_FILE, file,
208 CURLFORM_FILENAME, filename,
209 CURLFORM_CONTENTTYPE, "text/xml", CURLFORM_END);
210
211 /* Prepare request */
212 /* As explained in http://wiki.openstreetmap.org/index.php/User:LA2 */
213 /* Expect: header seems to produce incompatibilites between curl and httpd */
214 headers = curl_slist_append(headers, "Expect: ");
215 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
216 curl_easy_setopt(curl, CURLOPT_HTTPPOST, post);
217 curl_easy_setopt(curl, CURLOPT_URL, base_url);
218 curl_easy_setopt(curl, CURLOPT_USERPWD, user_pass);
219 curl_easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
5a7d2873 220 curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, curl_error_buffer);
2936913d
GB
221 if (vik_verbose)
222 curl_easy_setopt ( curl, CURLOPT_VERBOSE, 1 );
3e7553ae
GB
223
224 /* Execute request */
225 res = curl_easy_perform(curl);
226 if (res == CURLE_OK)
227 {
228 long code;
229 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code);
230 if (res == CURLE_OK)
231 {
232 g_debug("received valid curl response: %ld", code);
36420b5f 233 if (code != 200) {
4c77d5e0 234 g_warning(_("failed to upload data: HTTP response is %ld"), code);
36420b5f
RN
235 result = code;
236 }
3e7553ae 237 }
36420b5f 238 else {
24ff9c7b 239 g_critical(_("curl_easy_getinfo failed: %d"), res);
36420b5f 240 result = -1;
3e7553ae 241 }
36420b5f
RN
242 }
243 else {
244 g_warning(_("curl request failed: %s"), curl_error_buffer);
245 result = -2;
246 }
3e7553ae
GB
247
248 /* Memory */
249 g_free(user_pass); user_pass = NULL;
250
251 curl_formfree(post);
36420b5f
RN
252 curl_easy_cleanup(curl);
253 return result;
3e7553ae
GB
254}
255
256/**
257 * uploading function executed by the background" thread
258 */
259static void osm_traces_upload_thread ( OsmTracesInfo *oti, gpointer threaddata )
260{
208d2084
RN
261 /* Due to OSM limits, we have to enforce ele and time fields
262 also don't upload invisible tracks */
0d2b891f 263 static GpxWritingOptions options = { TRUE, TRUE, FALSE, FALSE };
3e7553ae
GB
264 FILE *file = NULL;
265 gchar *filename = NULL;
266 int fd;
267 GError *error = NULL;
268 int ret;
269
270 g_assert(oti != NULL);
271
272 /* Opening temporary file */
273 fd = g_file_open_tmp("viking_osm_upload_XXXXXX.gpx", &filename, &error);
274 if (fd < 0) {
4c77d5e0 275 g_error(_("failed to open temporary file: %s"), strerror(errno));
3e7553ae
GB
276 return;
277 }
278 g_clear_error(&error);
279 g_debug("%s: temporary file = %s", __FUNCTION__, filename);
280
281 /* Creating FILE* */
282 file = fdopen(fd, "w");
283
284 /* writing gpx file */
ce4bd1cf 285 if (oti->trk != NULL)
5092de80
GB
286 {
287 /* Upload only the selected track */
208d2084 288 a_gpx_write_track_file(oti->trk, file, &options);
5092de80
GB
289 }
290 else
0b72c435 291 {
5092de80 292 /* Upload the whole VikTrwLayer */
208d2084 293 a_gpx_write_file(oti->vtl, file, &options);
0b72c435 294 }
3e7553ae
GB
295
296 /* We can close the file */
297 /* This also close the associated fd */
298 fclose(file);
8c060406 299 file = NULL;
3e7553ae
GB
300
301 /* finally, upload it */
36420b5f
RN
302 gint ans = osm_traces_upload_file(user, password, filename,
303 oti->name, oti->description, oti->tags, oti->vistype);
304
305 //
306 // Show result in statusbar or failure in dialog for user feedback
307 //
308
309 // Get current time to put into message to show when result was generated
310 // since need to show difference between operations (when displayed on statusbar)
311 // NB If on dialog then don't need time.
312 time_t timenow;
313 struct tm* timeinfo;
314 time ( &timenow );
315 timeinfo = localtime ( &timenow );
316 gchar timestr[80];
317 // Compact time only - as days/date isn't very useful here
318 strftime ( timestr, sizeof(timestr), "%X)", timeinfo );
319
320 //
321 // Test to see if window it was invoked on is still valid
322 // Not sure if this test really works! (i.e. if the window was closed in the mean time)
323 //
324 if ( IS_VIK_WINDOW ((VikWindow *)VIK_GTK_WINDOW_FROM_LAYER(oti->vtl)) ) {
325 gchar* msg;
326 if ( ans == 0 ) {
327 // Success
328 msg = g_strdup_printf ( "%s (@%s)", _("Uploaded to OSM"), timestr );
36420b5f
RN
329 }
330 // Use UPPER CASE for bad news :(
331 else if ( ans < 0 ) {
332 msg = g_strdup_printf ( "%s (@%s)", _("FAILED TO UPLOAD DATA TO OSM - CURL PROBLEM"), timestr );
36420b5f
RN
333 }
334 else {
335 msg = g_strdup_printf ( "%s : %s %d (@%s)", _("FAILED TO UPLOAD DATA TO OSM"), _("HTTP response code"), ans, timestr );
36420b5f 336 }
7e5bb4eb
RN
337 // From the background so should use the signalling method to update display:
338 // TODO: This only works with statically assigned strings ATM
339 vik_window_signal_statusbar_update ( (VikWindow*)VIK_GTK_WINDOW_FROM_LAYER(oti->vtl), msg, VIK_STATUSBAR_INFO );
340 // Thus can't free the memory yet...
341 // Luckily OSM traces isn't heavily used so this is not a significant memory leak
342 //g_free (msg);
343 // But this is better than potentially crashing from multi thread GUI updates
36420b5f 344 }
3e7553ae
GB
345 /* Removing temporary file */
346 ret = g_unlink(filename);
347 if (ret != 0) {
24ff9c7b 348 g_critical(_("failed to unlink temporary file: %s"), strerror(errno));
3e7553ae
GB
349 }
350}
351
3cc57413
RN
352/**
353 *
354 */
355void osm_login_widgets (GtkWidget *user_entry, GtkWidget *password_entry)
356{
357 if (!user_entry || !password_entry)
358 return;
359
360 const gchar *default_user = get_default_user();
361 const gchar *pref_user = a_preferences_get(VIKING_OSM_TRACES_PARAMS_NAMESPACE "username")->s;
362 const gchar *pref_password = a_preferences_get(VIKING_OSM_TRACES_PARAMS_NAMESPACE "password")->s;
363
364 if (user != NULL && user[0] != '\0')
365 gtk_entry_set_text(GTK_ENTRY(user_entry), user);
366 else if (pref_user != NULL && pref_user[0] != '\0')
367 gtk_entry_set_text(GTK_ENTRY(user_entry), pref_user);
368 else if (default_user != NULL)
369 gtk_entry_set_text(GTK_ENTRY(user_entry), default_user);
370
371 if (password != NULL && password[0] != '\0')
372 gtk_entry_set_text(GTK_ENTRY(password_entry), password);
373 else if (pref_password != NULL)
374 gtk_entry_set_text(GTK_ENTRY(password_entry), pref_password);
375 /* This is a password -> invisible */
376 gtk_entry_set_visibility(GTK_ENTRY(password_entry), FALSE);
377}
378
3e7553ae
GB
379/**
380 * Uploading a VikTrwLayer
5092de80
GB
381 *
382 * @param vtl VikTrwLayer
ce4bd1cf 383 * @param trk if not null, the track to upload
3e7553ae 384 */
ce4bd1cf 385static void osm_traces_upload_viktrwlayer ( VikTrwLayer *vtl, VikTrack *trk )
3e7553ae 386{
4c77d5e0 387 GtkWidget *dia = gtk_dialog_new_with_buttons (_("OSM upload"),
3e7553ae
GB
388 VIK_GTK_WINDOW_FROM_LAYER(vtl),
389 GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
390 GTK_STOCK_CANCEL,
391 GTK_RESPONSE_REJECT,
392 GTK_STOCK_OK,
393 GTK_RESPONSE_ACCEPT,
394 NULL);
395
396 const gchar *name = NULL;
397 GtkWidget *user_label, *user_entry;
398 GtkWidget *password_label, *password_entry;
399 GtkWidget *name_label, *name_entry;
400 GtkWidget *description_label, *description_entry;
401 GtkWidget *tags_label, *tags_entry;
8b589250
GS
402 GtkComboBox *visibility;
403 const OsmTraceVis_t *vis_t;
3e7553ae 404
4c77d5e0 405 user_label = gtk_label_new(_("Email:"));
3e7553ae 406 user_entry = gtk_entry_new();
3e7553ae
GB
407 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dia)->vbox), user_label, FALSE, FALSE, 0);
408 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dia)->vbox), user_entry, FALSE, FALSE, 0);
064a4ce9
SB
409 gtk_widget_set_tooltip_markup(GTK_WIDGET(user_entry),
410 _("The email used as login\n"
411 "<small>Enter the email you use to login into www.openstreetmap.org.</small>"));
3e7553ae 412
4c77d5e0 413 password_label = gtk_label_new(_("Password:"));
3e7553ae 414 password_entry = gtk_entry_new();
3e7553ae
GB
415 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dia)->vbox), password_label, FALSE, FALSE, 0);
416 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dia)->vbox), password_entry, FALSE, FALSE, 0);
064a4ce9
SB
417 gtk_widget_set_tooltip_markup(GTK_WIDGET(password_entry),
418 _("The password used to login\n"
419 "<small>Enter the password you use to login into www.openstreetmap.org.</small>"));
3e7553ae 420
3cc57413
RN
421 osm_login_widgets ( user_entry, password_entry );
422
4c77d5e0 423 name_label = gtk_label_new(_("File's name:"));
3e7553ae 424 name_entry = gtk_entry_new();
ce4bd1cf
RN
425 if (trk != NULL)
426 name = trk->name;
5092de80
GB
427 else
428 name = vik_layer_get_name(VIK_LAYER(vtl));
3e7553ae
GB
429 gtk_entry_set_text(GTK_ENTRY(name_entry), name);
430 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dia)->vbox), name_label, FALSE, FALSE, 0);
431 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dia)->vbox), name_entry, FALSE, FALSE, 0);
064a4ce9
SB
432 gtk_widget_set_tooltip_markup(GTK_WIDGET(name_entry),
433 _("The name of the file on OSM\n"
434 "<small>This is the name of the file created on the server."
435 "This is not the name of the local file.</small>"));
3e7553ae 436
4c77d5e0 437 description_label = gtk_label_new(_("Description:"));
3e7553ae
GB
438 description_entry = gtk_entry_new();
439 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dia)->vbox), description_label, FALSE, FALSE, 0);
440 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dia)->vbox), description_entry, FALSE, FALSE, 0);
064a4ce9
SB
441 gtk_widget_set_tooltip_text(GTK_WIDGET(description_entry),
442 _("The description of the trace"));
3e7553ae 443
4c77d5e0 444 tags_label = gtk_label_new(_("Tags:"));
3e7553ae
GB
445 tags_entry = gtk_entry_new();
446 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dia)->vbox), tags_label, FALSE, FALSE, 0);
447 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dia)->vbox), tags_entry, FALSE, FALSE, 0);
064a4ce9
SB
448 gtk_widget_set_tooltip_text(GTK_WIDGET(tags_entry),
449 _("The tags associated to the trace"));
3e7553ae 450
8b589250
GS
451 visibility = GTK_COMBO_BOX(gtk_combo_box_new_text ());
452 for (vis_t = OsmTraceVis; vis_t->combostr != NULL; vis_t++)
453 gtk_combo_box_append_text(visibility, vis_t->combostr);
454 /* Set identifiable by default */
455 gtk_combo_box_set_active(visibility, 0);
456 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dia)->vbox), GTK_WIDGET(visibility), FALSE, FALSE, 0);
457
76e2179a
RN
458 /* User should think about it first... */
459 gtk_dialog_set_default_response ( GTK_DIALOG(dia), GTK_RESPONSE_REJECT );
460
8b589250
GS
461 gtk_widget_show_all ( dia );
462 gtk_widget_grab_focus ( description_entry );
3e7553ae
GB
463
464 if ( gtk_dialog_run ( GTK_DIALOG(dia) ) == GTK_RESPONSE_ACCEPT )
465 {
466 gchar *title = NULL;
467
468 /* overwrite authentication info */
3cc57413
RN
469 osm_set_login(gtk_entry_get_text(GTK_ENTRY(user_entry)),
470 gtk_entry_get_text(GTK_ENTRY(password_entry)));
3e7553ae
GB
471
472 /* Storing data for the future thread */
473 OsmTracesInfo *info = g_malloc(sizeof(OsmTracesInfo));
474 info->name = g_strdup(gtk_entry_get_text(GTK_ENTRY(name_entry)));
475 info->description = g_strdup(gtk_entry_get_text(GTK_ENTRY(description_entry)));
476 /* TODO Normalize tags: they will be used as URL part */
477 info->tags = g_strdup(gtk_entry_get_text(GTK_ENTRY(tags_entry)));
8b589250 478 info->vistype = &OsmTraceVis[gtk_combo_box_get_active(visibility)];
3e7553ae 479 info->vtl = VIK_TRW_LAYER(g_object_ref(vtl));
ce4bd1cf 480 info->trk = trk;
3e7553ae 481
4c77d5e0 482 title = g_strdup_printf(_("Uploading %s to OSM"), info->name);
3e7553ae
GB
483
484 /* launch the thread */
485 a_background_thread(VIK_GTK_WINDOW_FROM_LAYER(vtl), /* parent window */
486 title, /* description string */
487 (vik_thr_func) osm_traces_upload_thread, /* function to call within thread */
488 info, /* pass along data */
489 (vik_thr_free_func) oti_free, /* function to free pass along data */
490 (vik_thr_free_func) NULL,
491 1 );
492 g_free ( title ); title = NULL;
493 }
494 gtk_widget_destroy ( dia );
495}
496
497/**
5092de80 498 * Function called by the entry menu of a TrwLayer
3e7553ae
GB
499 */
500void osm_traces_upload_cb ( gpointer layer_and_vlp[2], guint file_type )
501{
5092de80
GB
502 osm_traces_upload_viktrwlayer(VIK_TRW_LAYER(layer_and_vlp[0]), NULL);
503}
504
505/**
506 * Function called by the entry menu of a single track
507 */
ce4bd1cf
RN
508// TODO: Fix this dodgy usage of magic 8 ball array sized numbering
509// At least have some common definition somewhere...
510void osm_traces_upload_track_cb ( gpointer pass_along[8] )
5092de80 511{
ce4bd1cf
RN
512 if ( pass_along[7] ) {
513 VikTrack *trk = VIK_TRACK(pass_along[7]);
514 osm_traces_upload_viktrwlayer(VIK_TRW_LAYER(pass_along[0]), trk);
515 }
3e7553ae 516}