]> git.street.me.uk Git - andy/viking.git/blame - src/osm-traces.c
SF Features#76: Add ability to handle and name trackpoints.
[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 48
49cf4658
RN
49#define VIK_SETTINGS_OSM_TRACE_VIS "osm_trace_visibility"
50static gint last_active = -1;
51
3e7553ae
GB
52/**
53 * Login to use for OSM uploading.
54 */
55static gchar *user = NULL;
56
57/**
58 * Password to use for OSM uploading.
59 */
60static gchar *password = NULL;
61
62/**
63 * Mutex to protect auth. token
64 */
65static GMutex *login_mutex = NULL;
66
8b589250
GS
67/**
68 * Different type of trace visibility.
69 */
70typedef struct _OsmTraceVis_t {
71 const gchar *combostr;
72 const gchar *apistr;
73} OsmTraceVis_t;
74
75static const OsmTraceVis_t OsmTraceVis[] = {
502d25de
GB
76 { N_("Identifiable (public w/ timestamps)"), "identifiable" },
77 { N_("Trackable (private w/ timestamps)"), "trackable" },
78 { N_("Public"), "public" },
79 { N_("Private"), "private" },
8b589250
GS
80 { NULL, NULL },
81};
82
3e7553ae
GB
83/**
84 * Struct hosting needed info.
85 */
86typedef struct _OsmTracesInfo {
87 gchar *name;
88 gchar *description;
89 gchar *tags;
9fcdb288 90 gboolean anonymize_times; // ATM only available on a single track.
8b589250 91 const OsmTraceVis_t *vistype;
3e7553ae 92 VikTrwLayer *vtl;
ce4bd1cf 93 VikTrack *trk;
3e7553ae
GB
94} OsmTracesInfo;
95
843b99df 96static VikLayerParam prefs[] = {
a7023a1b
RN
97 { VIK_LAYER_NUM_TYPES, VIKING_OSM_TRACES_PARAMS_NAMESPACE "username", VIK_LAYER_PARAM_STRING, VIK_LAYER_GROUP_NONE, N_("OSM username:"), VIK_LAYER_WIDGET_ENTRY, NULL, NULL, NULL },
98 { VIK_LAYER_NUM_TYPES, 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
99};
100
3e7553ae
GB
101/**
102 * Free an OsmTracesInfo struct.
103 */
104static void oti_free(OsmTracesInfo *oti)
105{
106 if (oti) {
107 /* Fields have been g_strdup'ed */
108 g_free(oti->name); oti->name = NULL;
109 g_free(oti->description); oti->description = NULL;
110 g_free(oti->tags); oti->tags = NULL;
111
112 g_object_unref(oti->vtl); oti->vtl = NULL;
113 }
114 /* Main struct has been g_malloc'ed */
115 g_free(oti);
116}
117
624318ca 118static const gchar *get_default_user()
51c15f41
GB
119{
120 const gchar *default_user = NULL;
121
122 /* Retrieve "standard" EMAIL varenv */
123 default_user = g_getenv("EMAIL");
124
125 return default_user;
126}
127
3cc57413 128void osm_set_login(const gchar *user_, const gchar *password_)
3e7553ae
GB
129{
130 /* Allocate mutex */
131 if (login_mutex == NULL)
132 {
133 login_mutex = g_mutex_new();
134 }
135 g_mutex_lock(login_mutex);
136 g_free(user); user = NULL;
137 g_free(password); password = NULL;
138 user = g_strdup(user_);
139 password = g_strdup(password_);
140 g_mutex_unlock(login_mutex);
141}
142
3cc57413 143gchar *osm_get_login()
3e7553ae
GB
144{
145 gchar *user_pass = NULL;
146 g_mutex_lock(login_mutex);
147 user_pass = g_strdup_printf("%s:%s", user, password);
148 g_mutex_unlock(login_mutex);
149 return user_pass;
150}
151
843b99df
GB
152/* initialisation */
153void osm_traces_init () {
154 /* Preferences */
d11de0ca 155 a_preferences_register_group ( VIKING_OSM_TRACES_PARAMS_GROUP_KEY, _("OpenStreetMap Traces") );
843b99df
GB
156
157 VikLayerParamData tmp;
158 tmp.s = "";
159 a_preferences_register(prefs, tmp, VIKING_OSM_TRACES_PARAMS_GROUP_KEY);
160 tmp.s = "";
161 a_preferences_register(prefs+1, tmp, VIKING_OSM_TRACES_PARAMS_GROUP_KEY);
162
163}
164
3e7553ae
GB
165/*
166 * Upload a file
36420b5f
RN
167 * returns a basic status:
168 * < 0 : curl error
169 * == 0 : OK
170 * > 0 : HTTP error
171 */
172static gint osm_traces_upload_file(const char *user,
173 const char *password,
174 const char *file,
175 const char *filename,
176 const char *description,
177 const char *tags,
178 const OsmTraceVis_t *vistype)
3e7553ae
GB
179{
180 CURL *curl;
181 CURLcode res;
182 char curl_error_buffer[CURL_ERROR_SIZE];
183 struct curl_slist *headers = NULL;
184 struct curl_httppost *post=NULL;
185 struct curl_httppost *last=NULL;
3e7553ae 186
ffb5a285 187 char *base_url = "http://www.openstreetmap.org/api/0.6/gpx/create";
3e7553ae 188
3cc57413 189 gchar *user_pass = osm_get_login();
3e7553ae 190
36420b5f
RN
191 gint result = 0; // Default to it worked!
192
3e7553ae
GB
193 g_debug("%s: %s %s %s %s %s %s", __FUNCTION__,
194 user, password, file, filename, description, tags);
195
196 /* Init CURL */
197 curl = curl_easy_init();
198
199 /* Filling the form */
200 curl_formadd(&post, &last,
201 CURLFORM_COPYNAME, "description",
202 CURLFORM_COPYCONTENTS, description, CURLFORM_END);
203 curl_formadd(&post, &last,
204 CURLFORM_COPYNAME, "tags",
205 CURLFORM_COPYCONTENTS, tags, CURLFORM_END);
3e7553ae 206 curl_formadd(&post, &last,
8b589250
GS
207 CURLFORM_COPYNAME, "visibility",
208 CURLFORM_COPYCONTENTS, vistype->apistr, CURLFORM_END);
3e7553ae
GB
209 curl_formadd(&post, &last,
210 CURLFORM_COPYNAME, "file",
211 CURLFORM_FILE, file,
212 CURLFORM_FILENAME, filename,
213 CURLFORM_CONTENTTYPE, "text/xml", CURLFORM_END);
214
215 /* Prepare request */
216 /* As explained in http://wiki.openstreetmap.org/index.php/User:LA2 */
217 /* Expect: header seems to produce incompatibilites between curl and httpd */
218 headers = curl_slist_append(headers, "Expect: ");
219 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
220 curl_easy_setopt(curl, CURLOPT_HTTPPOST, post);
221 curl_easy_setopt(curl, CURLOPT_URL, base_url);
222 curl_easy_setopt(curl, CURLOPT_USERPWD, user_pass);
223 curl_easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
5a7d2873 224 curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, curl_error_buffer);
2936913d
GB
225 if (vik_verbose)
226 curl_easy_setopt ( curl, CURLOPT_VERBOSE, 1 );
3e7553ae
GB
227
228 /* Execute request */
229 res = curl_easy_perform(curl);
230 if (res == CURLE_OK)
231 {
232 long code;
233 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code);
234 if (res == CURLE_OK)
235 {
236 g_debug("received valid curl response: %ld", code);
36420b5f 237 if (code != 200) {
4c77d5e0 238 g_warning(_("failed to upload data: HTTP response is %ld"), code);
36420b5f
RN
239 result = code;
240 }
3e7553ae 241 }
36420b5f 242 else {
24ff9c7b 243 g_critical(_("curl_easy_getinfo failed: %d"), res);
36420b5f 244 result = -1;
3e7553ae 245 }
36420b5f
RN
246 }
247 else {
248 g_warning(_("curl request failed: %s"), curl_error_buffer);
249 result = -2;
250 }
3e7553ae
GB
251
252 /* Memory */
253 g_free(user_pass); user_pass = NULL;
254
255 curl_formfree(post);
36420b5f
RN
256 curl_easy_cleanup(curl);
257 return result;
3e7553ae
GB
258}
259
260/**
261 * uploading function executed by the background" thread
262 */
263static void osm_traces_upload_thread ( OsmTracesInfo *oti, gpointer threaddata )
264{
208d2084
RN
265 /* Due to OSM limits, we have to enforce ele and time fields
266 also don't upload invisible tracks */
0d2b891f 267 static GpxWritingOptions options = { TRUE, TRUE, FALSE, FALSE };
3e7553ae
GB
268 FILE *file = NULL;
269 gchar *filename = NULL;
270 int fd;
271 GError *error = NULL;
272 int ret;
273
274 g_assert(oti != NULL);
275
276 /* Opening temporary file */
277 fd = g_file_open_tmp("viking_osm_upload_XXXXXX.gpx", &filename, &error);
278 if (fd < 0) {
4c77d5e0 279 g_error(_("failed to open temporary file: %s"), strerror(errno));
3e7553ae
GB
280 return;
281 }
282 g_clear_error(&error);
283 g_debug("%s: temporary file = %s", __FUNCTION__, filename);
284
285 /* Creating FILE* */
286 file = fdopen(fd, "w");
287
288 /* writing gpx file */
ce4bd1cf 289 if (oti->trk != NULL)
5092de80
GB
290 {
291 /* Upload only the selected track */
9fcdb288
RN
292 if ( oti->anonymize_times )
293 {
294 VikTrack *trk = vik_track_copy(oti->trk, TRUE);
295 vik_track_anonymize_times(trk);
296 a_gpx_write_track_file(trk, file, &options);
297 vik_track_free(trk);
298 }
299 else
300 a_gpx_write_track_file(oti->trk, file, &options);
5092de80
GB
301 }
302 else
0b72c435 303 {
5092de80 304 /* Upload the whole VikTrwLayer */
208d2084 305 a_gpx_write_file(oti->vtl, file, &options);
0b72c435 306 }
3e7553ae
GB
307
308 /* We can close the file */
309 /* This also close the associated fd */
310 fclose(file);
8c060406 311 file = NULL;
3e7553ae
GB
312
313 /* finally, upload it */
36420b5f
RN
314 gint ans = osm_traces_upload_file(user, password, filename,
315 oti->name, oti->description, oti->tags, oti->vistype);
316
317 //
318 // Show result in statusbar or failure in dialog for user feedback
319 //
320
321 // Get current time to put into message to show when result was generated
322 // since need to show difference between operations (when displayed on statusbar)
323 // NB If on dialog then don't need time.
324 time_t timenow;
325 struct tm* timeinfo;
326 time ( &timenow );
327 timeinfo = localtime ( &timenow );
328 gchar timestr[80];
329 // Compact time only - as days/date isn't very useful here
330 strftime ( timestr, sizeof(timestr), "%X)", timeinfo );
331
332 //
333 // Test to see if window it was invoked on is still valid
334 // Not sure if this test really works! (i.e. if the window was closed in the mean time)
335 //
336 if ( IS_VIK_WINDOW ((VikWindow *)VIK_GTK_WINDOW_FROM_LAYER(oti->vtl)) ) {
337 gchar* msg;
338 if ( ans == 0 ) {
339 // Success
340 msg = g_strdup_printf ( "%s (@%s)", _("Uploaded to OSM"), timestr );
36420b5f
RN
341 }
342 // Use UPPER CASE for bad news :(
343 else if ( ans < 0 ) {
344 msg = g_strdup_printf ( "%s (@%s)", _("FAILED TO UPLOAD DATA TO OSM - CURL PROBLEM"), timestr );
36420b5f
RN
345 }
346 else {
347 msg = g_strdup_printf ( "%s : %s %d (@%s)", _("FAILED TO UPLOAD DATA TO OSM"), _("HTTP response code"), ans, timestr );
36420b5f 348 }
39ae014f
RN
349 vik_window_statusbar_update ( (VikWindow*)VIK_GTK_WINDOW_FROM_LAYER(oti->vtl), msg, VIK_STATUSBAR_INFO );
350 g_free (msg);
36420b5f 351 }
3e7553ae
GB
352 /* Removing temporary file */
353 ret = g_unlink(filename);
354 if (ret != 0) {
24ff9c7b 355 g_critical(_("failed to unlink temporary file: %s"), strerror(errno));
3e7553ae
GB
356 }
357}
358
3cc57413
RN
359/**
360 *
361 */
362void osm_login_widgets (GtkWidget *user_entry, GtkWidget *password_entry)
363{
364 if (!user_entry || !password_entry)
365 return;
366
367 const gchar *default_user = get_default_user();
368 const gchar *pref_user = a_preferences_get(VIKING_OSM_TRACES_PARAMS_NAMESPACE "username")->s;
369 const gchar *pref_password = a_preferences_get(VIKING_OSM_TRACES_PARAMS_NAMESPACE "password")->s;
370
371 if (user != NULL && user[0] != '\0')
372 gtk_entry_set_text(GTK_ENTRY(user_entry), user);
373 else if (pref_user != NULL && pref_user[0] != '\0')
374 gtk_entry_set_text(GTK_ENTRY(user_entry), pref_user);
375 else if (default_user != NULL)
376 gtk_entry_set_text(GTK_ENTRY(user_entry), default_user);
377
378 if (password != NULL && password[0] != '\0')
379 gtk_entry_set_text(GTK_ENTRY(password_entry), password);
380 else if (pref_password != NULL)
381 gtk_entry_set_text(GTK_ENTRY(password_entry), pref_password);
382 /* This is a password -> invisible */
383 gtk_entry_set_visibility(GTK_ENTRY(password_entry), FALSE);
384}
385
3e7553ae
GB
386/**
387 * Uploading a VikTrwLayer
5092de80
GB
388 *
389 * @param vtl VikTrwLayer
ce4bd1cf 390 * @param trk if not null, the track to upload
3e7553ae 391 */
ce4bd1cf 392static void osm_traces_upload_viktrwlayer ( VikTrwLayer *vtl, VikTrack *trk )
3e7553ae 393{
4c77d5e0 394 GtkWidget *dia = gtk_dialog_new_with_buttons (_("OSM upload"),
3e7553ae
GB
395 VIK_GTK_WINDOW_FROM_LAYER(vtl),
396 GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
397 GTK_STOCK_CANCEL,
398 GTK_RESPONSE_REJECT,
399 GTK_STOCK_OK,
400 GTK_RESPONSE_ACCEPT,
401 NULL);
402
403 const gchar *name = NULL;
404 GtkWidget *user_label, *user_entry;
405 GtkWidget *password_label, *password_entry;
406 GtkWidget *name_label, *name_entry;
407 GtkWidget *description_label, *description_entry;
408 GtkWidget *tags_label, *tags_entry;
1bc1c05b 409 GtkWidget *visibility;
9fcdb288 410 GtkWidget *anonymize_checkbutton = NULL;
8b589250 411 const OsmTraceVis_t *vis_t;
3e7553ae 412
4c77d5e0 413 user_label = gtk_label_new(_("Email:"));
3e7553ae 414 user_entry = gtk_entry_new();
9b082b39
RN
415 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), user_label, FALSE, FALSE, 0);
416 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), user_entry, FALSE, FALSE, 0);
064a4ce9
SB
417 gtk_widget_set_tooltip_markup(GTK_WIDGET(user_entry),
418 _("The email used as login\n"
419 "<small>Enter the email you use to login into www.openstreetmap.org.</small>"));
3e7553ae 420
4c77d5e0 421 password_label = gtk_label_new(_("Password:"));
3e7553ae 422 password_entry = gtk_entry_new();
9b082b39
RN
423 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), password_label, FALSE, FALSE, 0);
424 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), password_entry, FALSE, FALSE, 0);
064a4ce9
SB
425 gtk_widget_set_tooltip_markup(GTK_WIDGET(password_entry),
426 _("The password used to login\n"
427 "<small>Enter the password you use to login into www.openstreetmap.org.</small>"));
3e7553ae 428
3cc57413
RN
429 osm_login_widgets ( user_entry, password_entry );
430
4c77d5e0 431 name_label = gtk_label_new(_("File's name:"));
3e7553ae 432 name_entry = gtk_entry_new();
ce4bd1cf
RN
433 if (trk != NULL)
434 name = trk->name;
5092de80
GB
435 else
436 name = vik_layer_get_name(VIK_LAYER(vtl));
3e7553ae 437 gtk_entry_set_text(GTK_ENTRY(name_entry), name);
9b082b39
RN
438 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), name_label, FALSE, FALSE, 0);
439 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), name_entry, FALSE, FALSE, 0);
064a4ce9
SB
440 gtk_widget_set_tooltip_markup(GTK_WIDGET(name_entry),
441 _("The name of the file on OSM\n"
442 "<small>This is the name of the file created on the server."
443 "This is not the name of the local file.</small>"));
3e7553ae 444
4c77d5e0 445 description_label = gtk_label_new(_("Description:"));
3e7553ae 446 description_entry = gtk_entry_new();
9b082b39
RN
447 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), description_label, FALSE, FALSE, 0);
448 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), description_entry, FALSE, FALSE, 0);
064a4ce9
SB
449 gtk_widget_set_tooltip_text(GTK_WIDGET(description_entry),
450 _("The description of the trace"));
3e7553ae 451
9fcdb288
RN
452 if (trk != NULL) {
453 GtkWidget *label = gtk_label_new(_("Anonymize Times:"));
454 anonymize_checkbutton = gtk_check_button_new ();
455 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), label, FALSE, FALSE, 0);
456 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), anonymize_checkbutton, FALSE, FALSE, 0);
457 gtk_widget_set_tooltip_text(GTK_WIDGET(anonymize_checkbutton),
458 _("Anonymize times of the trace.\n"
459 "<small>You may choose to make the trace identifiable, yet mask the actual real time values</small>"));
460 }
461
4c77d5e0 462 tags_label = gtk_label_new(_("Tags:"));
3e7553ae 463 tags_entry = gtk_entry_new();
9b082b39
RN
464 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), tags_label, FALSE, FALSE, 0);
465 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), tags_entry, FALSE, FALSE, 0);
064a4ce9
SB
466 gtk_widget_set_tooltip_text(GTK_WIDGET(tags_entry),
467 _("The tags associated to the trace"));
3e7553ae 468
1bc1c05b 469 visibility = vik_combo_box_text_new();
8b589250 470 for (vis_t = OsmTraceVis; vis_t->combostr != NULL; vis_t++)
1bc1c05b
RN
471 vik_combo_box_text_append (visibility, vis_t->combostr);
472
49cf4658
RN
473 // Set identifiable by default or use the settings for the value
474 if ( last_active < 0 ) {
475 gint find_entry = -1;
476 gint wanted_entry = -1;
477 gchar *vis = NULL;
478 if ( a_settings_get_string ( VIK_SETTINGS_OSM_TRACE_VIS, &vis ) ) {
479 // Use setting
480 if ( vis ) {
481 for (vis_t = OsmTraceVis; vis_t->apistr != NULL; vis_t++) {
482 find_entry++;
483 if (!strcmp(vis, vis_t->apistr)) {
484 wanted_entry = find_entry;
485 }
486 }
487 }
488 // If not found set it to the first entry, otherwise use the entry
489 last_active = ( wanted_entry < 0 ) ? 0 : wanted_entry;
490 }
491 else
492 last_active = 0;
493 }
494 gtk_combo_box_set_active(GTK_COMBO_BOX(visibility), last_active);
9b082b39 495 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dia))), GTK_WIDGET(visibility), FALSE, FALSE, 0);
8b589250 496
76e2179a
RN
497 /* User should think about it first... */
498 gtk_dialog_set_default_response ( GTK_DIALOG(dia), GTK_RESPONSE_REJECT );
499
8b589250
GS
500 gtk_widget_show_all ( dia );
501 gtk_widget_grab_focus ( description_entry );
3e7553ae
GB
502
503 if ( gtk_dialog_run ( GTK_DIALOG(dia) ) == GTK_RESPONSE_ACCEPT )
504 {
505 gchar *title = NULL;
506
507 /* overwrite authentication info */
3cc57413
RN
508 osm_set_login(gtk_entry_get_text(GTK_ENTRY(user_entry)),
509 gtk_entry_get_text(GTK_ENTRY(password_entry)));
3e7553ae
GB
510
511 /* Storing data for the future thread */
512 OsmTracesInfo *info = g_malloc(sizeof(OsmTracesInfo));
513 info->name = g_strdup(gtk_entry_get_text(GTK_ENTRY(name_entry)));
514 info->description = g_strdup(gtk_entry_get_text(GTK_ENTRY(description_entry)));
515 /* TODO Normalize tags: they will be used as URL part */
516 info->tags = g_strdup(gtk_entry_get_text(GTK_ENTRY(tags_entry)));
1bc1c05b 517 info->vistype = &OsmTraceVis[gtk_combo_box_get_active(GTK_COMBO_BOX(visibility))];
3e7553ae 518 info->vtl = VIK_TRW_LAYER(g_object_ref(vtl));
ce4bd1cf 519 info->trk = trk;
9fcdb288
RN
520 if (trk != NULL && anonymize_checkbutton != NULL )
521 info->anonymize_times = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(anonymize_checkbutton));
522 else
523 info->anonymize_times = FALSE;
3e7553ae 524
49cf4658
RN
525 // Save visibility value for default reuse
526 last_active = gtk_combo_box_get_active(GTK_COMBO_BOX(visibility));
527 a_settings_set_string ( VIK_SETTINGS_OSM_TRACE_VIS, OsmTraceVis[last_active].apistr );
528
4c77d5e0 529 title = g_strdup_printf(_("Uploading %s to OSM"), info->name);
3e7553ae
GB
530
531 /* launch the thread */
532 a_background_thread(VIK_GTK_WINDOW_FROM_LAYER(vtl), /* parent window */
533 title, /* description string */
534 (vik_thr_func) osm_traces_upload_thread, /* function to call within thread */
535 info, /* pass along data */
536 (vik_thr_free_func) oti_free, /* function to free pass along data */
537 (vik_thr_free_func) NULL,
538 1 );
539 g_free ( title ); title = NULL;
540 }
541 gtk_widget_destroy ( dia );
542}
543
544/**
5092de80 545 * Function called by the entry menu of a TrwLayer
3e7553ae
GB
546 */
547void osm_traces_upload_cb ( gpointer layer_and_vlp[2], guint file_type )
548{
5092de80
GB
549 osm_traces_upload_viktrwlayer(VIK_TRW_LAYER(layer_and_vlp[0]), NULL);
550}
551
552/**
553 * Function called by the entry menu of a single track
554 */
ce4bd1cf
RN
555// TODO: Fix this dodgy usage of magic 8 ball array sized numbering
556// At least have some common definition somewhere...
557void osm_traces_upload_track_cb ( gpointer pass_along[8] )
5092de80 558{
ce4bd1cf
RN
559 if ( pass_along[7] ) {
560 VikTrack *trk = VIK_TRACK(pass_along[7]);
561 osm_traces_upload_viktrwlayer(VIK_TRW_LAYER(pass_along[0]), trk);
562 }
3e7553ae 563}