-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload.py
executable file
·196 lines (169 loc) · 7.62 KB
/
upload.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#!/usr/bin/env python
# Copyright 2012, Ed Campbell
# All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# TODO - units on output, order gpx by creation date, .strava file
import getpass
import glob
import hashlib
import os
import random
import readline
import subprocess
import gnomekeyring
import requests
def get_credentials():
try:
keyrings = gnomekeyring.find_items_sync(gnomekeyring.ITEM_GENERIC_SECRET,
{'signon_realm': 'https://www.strava.com/'})
except gnomekeyring.NoMatchError:
# no stored cred
email = None
password = None
else:
if len(keyrings) == 1:
email = keyrings[0].attributes['username_value']
password = keyrings[0].secret
resp = raw_input('Are you {}? (Y/n): '.format(email))
if resp != '' and resp.lower() != 'y':
email = None
password = None
else:
print('Multiple logins found...')
for i, keyring in enumerate(keyrings, 1):
print('{}) {}'.format(i, keyring.attributes['username_value']))
id_num = int(raw_input('Enter number of account' \
'(0 to enter alternative): '))
if id_num > 0 and id_num <= len(keyrings):
email = keyrings[id_num - 1].attributes['username_value']
password = keyrings[id_num -1].secret
elif id_num != 0:
print('Invalid response.')
# Fallback is to ask
if email is None:
print('Enter strava login...')
email = raw_input('Email: ')
password = getpass.getpass()
return email, password
def encrypy_password(raw_password):
salt = hashlib.sha384(str(random.random())).hexdigest()
hsh = hashlib.sha512('{}{}'.format(salt, raw_password)).hexdigest()
enc_password = '{}${}'.format(salt, hsh)
return enc_password
def check_password(raw_password, enc_password):
salt, hsh = enc_password.split('$')
return hsh == hashlib.sha512('{}{}'.format(salt, raw_password)).hexdigest()
def login(email, password):
# Authentication
r = requests.post('https://www.strava.com/api/v2/authentication/login',
data={'email': email, 'password': password})
if not r.ok:
raise ValueError('Authentication failed ({}): {}'.format(r.status_code, r.text))
return r.json()['token'], r.json()['athlete']['id']
def get_athlete_data(token):
# Get athlete info
r = requests.get('https://www.strava.com/api/v2/athletes/{}'.format(athlete_id),
params={'token':token})
if not r.ok:
raise ValueError('Operation failed ({}): {}'.format(r.status_code, r.text))
return r.json()
def get_ride_data(ride_id):
# Get ride info
r = requests.get('https://www.strava.com/api/v2/rides/{}'.format(ride_id))
if not r.ok:
raise ValueError('Operation failed ({}): {}'.format(r.status_code, r.text))
return r.json()['ride']
def upload_gpx(token, filename, activity='ride'):
if activity not in ['ride', 'run']:
raise ValueError("Unknown activity type '{}'".format(activity))
with open(filename, 'rt') as gpx_file:
gpx_data = gpx_file.read()
r = requests.post('http://www.strava.com/api/v2/upload', data={'token': token,
'data': gpx_data,
'type': 'gpx',
'activity': activity})
if not r.ok:
raise ValueError('Operation failed ({}): {}'.format(r.status_code, r.text))
return r.json()['id'], r.json()['upload_id']
if __name__ == '__main__':
# Log in
email, password = get_credentials()
try:
token, athlete_id = login(email, password)
except RuntimeError:
print('Login failed. Exiting...')
print('Login successful.\n')
# Upload
#garmin_path = '/media/GARMIN/Garmin/GPX'
garmin_path = '/media/esc24/GARMIN/Garmin/GPX'
if os.path.isdir(garmin_path):
track_num = 0
print('Looking for tracks from Dakota...')
filenames = glob.glob(os.path.join(garmin_path,'Track_*.gpx'))
# Sort by modification time
filenames.sort(key=lambda f: os.path.getmtime(f))
if filenames:
for i, filename in enumerate(filenames ,1):
print('{}) {}'.format(i, os.path.basename(filename).replace('Track_', '')))
track_num = int(raw_input('Enter number to upload ' \
'(0 to skip upload): '))
if track_num == 0:
print('Skipping upload.')
elif track_num > 0 and track_num <= len(filenames):
upload_gpx(token, filenames[track_num - 1])
print("Upload successful. Visit http://app.strava.com/athlete/training to edit.")
else:
print('Invalid response. Skipping upload.')
else:
print('No tracks found.\n')
else:
# Attempt to process Forerunner logs.
print('Looking for tracks from Forerunner...')
output = subprocess.check_output(('garmin_save_runs'))
files_found = False
for line in output.splitlines():
if line.startswith('Wrote:'):
files_found = True
_, gmn_path = line.split()
gpx_path = os.path.splitext(gmn_path)[0] + '.gpx'
gpx = subprocess.check_output(('garmin_gpx', gmn_path))
with open(gpx_path, 'w') as gpx_file:
gpx_file.write(gpx)
resp = raw_input('Upload {!r}? (Y/n)'.format(gpx_path))
if resp.lower() == 'y':
upload_gpx(token, gpx_path)
print("Upload successful. Visit http://app.strava.com/athlete/training to edit.")
if not files_found:
print('No tracks found.\n')
# Query rides
exit_flag = False
while exit_flag is False:
ride_id = raw_input('Enter ride id to query (0 to exit): ')
if int(ride_id) == 0:
exit_flag = True
print('Exiting...')
else:
try:
ride = get_ride_data(ride_id)
except ValueError as e:
print(e.message)
else:
for key, val in ride.iteritems():
print('{!s}: {}'.format(key, val))