public
Description: A Python script to grab all your photos from flickr and dump them into a directory, organized into folders by set name.
Homepage: http://hivelogic.com
Clone URL: git://github.com/dan/hivelogic-flickrtouchr.git
Click here to lend your support to: hivelogic-flickrtouchr and make a donation at www.pledgie.com !
commit  9ba645b52102311dd8c0c938e8554390ed4f0852
tree    826102879017a7ae5e58c057c5207cbad1788292
parent  574c966ac9167665138c9c2881a3b8c54be4adc7
hivelogic-flickrtouchr / flickrtouchr.py
100755 315 lines (246 sloc) 9.235 kb
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
#!/usr/bin/env python
 
#
# FlickrTouchr - a simple python script to grab all your photos from flickr,
# dump into a directory - organised into folders by set -
# along with any favourites you have saved.
#
# You can then sync the photos to an iPod touch.
#
# Version: 1.2
#
# Original Author: colm - AT - allcosts.net - Colm MacCarthaigh - 2008-01-21
#
# Modified by: Dan Benjamin - http://hivelogic.com
#
# License: Apache 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html
#
 
import xml.dom.minidom
import webbrowser
import urlparse
import urllib2
import unicodedata
import cPickle
import md5
import sys
import os
 
API_KEY = "e224418b91b4af4e8cdb0564716fa9bd"
SHARED_SECRET = "7cddb9c9716501a0"
 
#
# Utility functions for dealing with flickr authentication
#
def getText(nodelist):
    rc = ""
    for node in nodelist:
        if node.nodeType == node.TEXT_NODE:
            rc = rc + node.data
    return rc.encode("utf-8")
 
#
# Get the frob based on our API_KEY and shared secret
#
def getfrob():
    # Create our signing string
    string = SHARED_SECRET + "api_key" + API_KEY + "methodflickr.auth.getFrob"
    hash = md5.new(string).digest().encode("hex")
 
    # Formulate the request
    url = "http://api.flickr.com/services/rest/?method=flickr.auth.getFrob"
    url += "&api_key=" + API_KEY + "&api_sig=" + hash
 
    try:
        # Make the request and extract the frob
        response = urllib2.urlopen(url)
    
        # Parse the XML
        dom = xml.dom.minidom.parse(response)
 
        # get the frob
        frob = getText(dom.getElementsByTagName("frob")[0].childNodes)
 
        # Free the DOM
        dom.unlink()
 
        # Return the frob
        return frob
 
    except:
        raise "Could not retrieve frob"
 
#
# Login and get a token
#
def froblogin(frob, perms):
    string = SHARED_SECRET + "api_key" + API_KEY + "frob" + frob + "perms" + perms
    hash = md5.new(string).digest().encode("hex")
 
    # Formulate the request
    url = "http://api.flickr.com/services/auth/?"
    url += "api_key=" + API_KEY + "&perms=" + perms
    url += "&frob=" + frob + "&api_sig=" + hash
 
    # Tell the user what's happening
    print "In order to allow FlickrTouchr to read your photos and favourites"
    print "you need to allow the application. Please press return when you've"
    print "granted access at the following url (which should have opened"
    print "automatically)."
    print
    print url
    print
    print "Waiting for you to press return"
 
    # We now have a login url, open it in a web-browser
    webbrowser.open_new(url)
 
    # Wait for input
    sys.stdin.readline()
 
    # Now, try and retrieve a token
    string = SHARED_SECRET + "api_key" + API_KEY + "frob" + frob + "methodflickr.auth.getToken"
    hash = md5.new(string).digest().encode("hex")
    
    # Formulate the request
    url = "http://api.flickr.com/services/rest/?method=flickr.auth.getToken"
    url += "&api_key=" + API_KEY + "&frob=" + frob
    url += "&api_sig=" + hash
 
    # See if we get a token
    try:
        # Make the request and extract the frob
        response = urllib2.urlopen(url)
    
        # Parse the XML
        dom = xml.dom.minidom.parse(response)
 
        # get the token and user-id
        token = getText(dom.getElementsByTagName("token")[0].childNodes)
        nsid = dom.getElementsByTagName("user")[0].getAttribute("nsid")
 
        # Free the DOM
        dom.unlink()
 
        # Return the token and userid
        return (nsid, token)
    except:
        raise "Login failed"
 
#
# Sign an arbitrary flickr request with a token
#
def flickrsign(url, token):
    query = urlparse.urlparse(url).query
    query += "&api_key=" + API_KEY + "&auth_token=" + token
    params = query.split('&')
 
    # Create the string to hash
    string = SHARED_SECRET
    
    # Sort the arguments alphabettically
    params.sort()
    for param in params:
        string += param.replace('=', '')
    hash = md5.new(string).digest().encode("hex")
 
    # Now, append the api_key, and the api_sig args
    url += "&api_key=" + API_KEY + "&auth_token=" + token + "&api_sig=" + hash
    
    # Return the signed url
    return url
 
#
# Grab the photo from the server
#
def getphoto(id, token, filename):
    try:
        # Contruct a request to find the sizes
        url = "http://api.flickr.com/services/rest/?method=flickr.photos.getSizes"
        url += "&photo_id=" + id
    
        # Sign the request
        url = flickrsign(url, token)
    
        # Make the request
        response = urllib2.urlopen(url)
        
        # Parse the XML
        dom = xml.dom.minidom.parse(response)
 
        # Get the list of sizes
        sizes = dom.getElementsByTagName("size")
 
        # Grab the original if it exists
        if (sizes[-1].getAttribute("label") == "Original"):
          imgurl = sizes[-1].getAttribute("source")
        else:
          print "Failed to get original for photo id " + id
 
 
        # Free the DOM memory
        dom.unlink()
 
        # Grab the image file
        response = urllib2.urlopen(imgurl)
        data = response.read()
    
        # Save the file!
        fh = open(filename, "w")
        fh.write(data)
        fh.close()
 
        return filename
    except:
        print "Failed to retrieve photo id " + id
    
######## Main Application ##########
if __name__ == '__main__':
 
    # The first, and only argument needs to be a directory
    try:
        os.chdir(sys.argv[1])
    except:
        print "usage: %s directory" % sys.argv[0]
        sys.exit(1)
 
    # First things first, see if we have a cached user and auth-token
    try:
        cache = open("touchr.frob.cache", "r")
        config = cPickle.load(cache)
        cache.close()
 
    # We don't - get a new one
    except:
        (user, token) = froblogin(getfrob(), "read")
        config = { "version":1 , "user":user, "token":token }
 
        # Save it for future use
        cache = open("touchr.frob.cache", "w")
        cPickle.dump(config, cache)
        cache.close()
 
    # Now, construct a query for the list of photo sets
    url = "http://api.flickr.com/services/rest/?method=flickr.photosets.getList"
    url += "&user_id=" + config["user"]
    url = flickrsign(url, config["token"])
 
    # get the result
    response = urllib2.urlopen(url)
    
    # Parse the XML
    dom = xml.dom.minidom.parse(response)
 
    # Get the list of Sets
    sets = dom.getElementsByTagName("photoset")
 
    # For each set - create a url
    urls = []
    for set in sets:
        pid = set.getAttribute("id")
        dir = getText(set.getElementsByTagName("title")[0].childNodes)
        dir = unicodedata.normalize('NFKD', dir.decode("utf-8", "ignore")).encode('ASCII', 'ignore') # Normalize to ASCII
 
        # Build the list of photos
        url = "http://api.flickr.com/services/rest/?method=flickr.photosets.getPhotos"
        url += "&photoset_id=" + pid
 
        # Append to our list of urls
        urls.append( (url , dir) )
    
    # Free the DOM memory
    dom.unlink()
 
    # Add the photos which are not in any set
    url = "http://api.flickr.com/services/rest/?method=flickr.photos.getNotInSet"
    urls.append( (url, "No Set") )
 
    # Add the user's Favourites
    url = "http://api.flickr.com/services/rest/?method=flickr.favorites.getList"
    urls.append( (url, "Favourites") )
 
    # Time to get the photos
    inodes = {}
    for (url , dir) in urls:
        # Create the directory
        try:
            os.makedirs(dir)
        except:
            pass
 
        # Get 500 results per page
        url += "&per_page=500"
        pages = page = 1
 
        while page <= pages:
            request = url + "&page=" + str(page)
 
            # Sign the url
            request = flickrsign(request, config["token"])
 
            # Make the request
            response = urllib2.urlopen(request)
 
            # Parse the XML
            dom = xml.dom.minidom.parse(response)
 
            # Get the total
            pages = int(dom.getElementsByTagName("photo")[0].parentNode.getAttribute("pages"))
 
            # Grab the photos
            for photo in dom.getElementsByTagName("photo"):
                # Tell the user we're grabbing the file
                print photo.getAttribute("title").encode("utf8") + " ... in set ... " + dir
 
                # Grab the id
                photoid = photo.getAttribute("id")
 
                # The target
                target = dir + "/" + photoid + ".jpg"
 
                # Skip files that exist
                if os.access(target, os.R_OK):
                    inodes[photoid] = target
                    continue
                
                # Look it up in our dictionary of inodes first
                if photoid in inodes and inodes[photoid] and os.access(inodes[photoid], os.R_OK):
                    # woo, we have it already, use a hard-link
                    os.link(inodes[photoid], target)
                else:
                    inodes[photoid] = getphoto(photo.getAttribute("id"), config["token"], target)
 
            # Move on the next page
            page = page + 1