~duplicity-team/duplicity/0.6-series

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
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
#
# Copyright 2011 Carlos Abalde <carlos.abalde@gmail.com>
#
# This file is part of duplicity.
#
# Duplicity is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# Duplicity is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with duplicity; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

import os.path
import string
import urllib;

import duplicity.backend
from duplicity.backend import retry
from duplicity import log
from duplicity.errors import * #@UnusedWildImport

class GDocsBackend(duplicity.backend.Backend):
    """Connect to remote store using Google Google Documents List API"""

    ROOT_FOLDER_ID = 'folder%3Aroot'
    BACKUP_DOCUMENT_TYPE = 'application/binary'

    def __init__(self, parsed_url):
        duplicity.backend.Backend.__init__(self, parsed_url)

        # Import Google Data APIs libraries.
        try:
            global atom
            global gdata
            import atom.data
            import gdata.client
            import gdata.docs.client
            import gdata.docs.data
        except ImportError:
            raise BackendException('Google Docs backend requires Google Data APIs Python '
                                   'Client Library (see http://code.google.com/p/gdata-python-client/).')

        # Setup client instance.
        self.client = gdata.docs.client.DocsClient(source='duplicity $version')
        self.client.ssl = True
        self.client.http_client.debug = False
        self.__authorize(parsed_url.username + '@' + parsed_url.hostname, self.get_password())

        # Fetch destination folder entry (and crete hierarchy if required).
        folder_names = string.split(parsed_url.path[1:], '/')
        parent_folder = None
        parent_folder_id = GDocsBackend.ROOT_FOLDER_ID
        for folder_name in folder_names:
            entries = self.__fetch_entries(parent_folder_id, 'folder', folder_name)
            if entries is not None:
                if len(entries) == 1:
                    parent_folder = entries[0]
                elif len(entries) == 0:
                    parent_folder = self.client.create(gdata.docs.data.FOLDER_LABEL, folder_name, parent_folder)
                else:
                    parent_folder = None
                if parent_folder:
                    parent_folder_id = parent_folder.resource_id.text
                else:
                    raise BackendException("Error while creating destination folder '%s'." % folder_name)
            else:
                raise BackendException("Error while fetching destination folder '%s'." % folder_name)
        self.folder = parent_folder

    @retry
    def put(self, source_path, remote_filename=None, raise_errors = False):
        """Transfer source_path to remote_filename"""
        # Default remote file name.
        if not remote_filename:
            remote_filename = source_path.get_filename()

        # Upload!
        try:
            # If remote file already exists in destination folder, remove it.
            entries = self.__fetch_entries(self.folder.resource_id.text,
                                           GDocsBackend.BACKUP_DOCUMENT_TYPE,
                                           remote_filename)
            for entry in entries:
                self.client.delete(entry.get_edit_link().href + '?delete=true', force=True)
            
            # Set uploader instance. Note that resumable uploads are required in order to
            # enable uploads for all file types.
            # (see http://googleappsdeveloper.blogspot.com/2011/05/upload-all-file-types-to-any-google.html)
            file = source_path.open()
            uploader = gdata.client.ResumableUploader(
              self.client, file, GDocsBackend.BACKUP_DOCUMENT_TYPE, os.path.getsize(file.name),
              chunk_size=gdata.client.ResumableUploader.DEFAULT_CHUNK_SIZE,
              desired_class=gdata.docs.data.DocsEntry)
            if uploader:
                # Chunked upload.
                entry = gdata.docs.data.DocsEntry(title = atom.data.Title(text = remote_filename))
                uri = '/feeds/upload/create-session/default/private/full?convert=false'
                entry = uploader.UploadFile(uri, entry = entry)
                if entry:
                    # Move to destination folder.
                    # TODO: any ideas on how to avoid this step?
                    if self.client.Move(entry, self.folder):
                        assert not file.close()
                        return
                    else:
                        self.__handle_error("Failed to move uploaded file '%s' to destination remote folder '%s'"
                                            % (source_path.get_filename(), self.folder.title.text), raise_errors)
                else:
                    self.__handle_error("Failed to upload file '%s' to remote folder '%s'" 
                                        % (source_path.get_filename(), self.folder.title.text), raise_errors)
            else:
                self.__handle_error("Failed to initialize upload of file '%s' to remote folder '%s'"
                         % (source_path.get_filename(), self.folder.title.text), raise_errors)
            assert not file.close()
        except Exception, e:
            self.__handle_error("Failed to upload file '%s' to remote folder '%s': %s"
                                % (source_path.get_filename(), self.folder.title.text, str(e)), raise_errors)

    @retry
    def get(self, remote_filename, local_path, raise_errors = False):
        """Get remote filename, saving it to local_path"""
        try:
            entries = self.__fetch_entries(self.folder.resource_id.text,
                                           GDocsBackend.BACKUP_DOCUMENT_TYPE,
                                           remote_filename)
            if len(entries) == 1:
                entry = entries[0]
                self.client.Download(entry, local_path.name)
                local_path.setdata()
                return
            else:
                self.__handle_error("Failed to find file '%s' in remote folder '%s'"
                                    % (remote_filename, self.folder.title.text), raise_errors)
        except Exception, e:
            self.__handle_error("Failed to download file '%s' in remote folder '%s': %s"
                                 % (remote_filename, self.folder.title.text, str(e)), raise_errors)

    @retry
    def list(self, raise_errors = False):
        """List files in folder"""
        try:
            entries = self.__fetch_entries(self.folder.resource_id.text,
                                           GDocsBackend.BACKUP_DOCUMENT_TYPE)
            return [entry.title.text for entry in entries]
        except Exception, e:
            self.__handle_error("Failed to fetch list of files in remote folder '%s': %s"
                                % (self.folder.title.text, str(e)), raise_errors)

    @retry
    def delete(self, filename_list, raise_errors = False):
        """Delete files in filename_list"""
        for filename in filename_list:
            try:
                entries = self.__fetch_entries(self.folder.resource_id.text,
                                               GDocsBackend.BACKUP_DOCUMENT_TYPE,
                                               filename)
                if len(entries) > 0:
                    success = True
                    for entry in entries:
                        if not self.client.delete(entry.get_edit_link().href + '?delete=true', force = True):
                            success = False
                    if not success:
                        self.__handle_error("Failed to remove file '%s' in remote folder '%s'"
                                            % (filename, self.folder.title.text), raise_errors)
                else:
                    log.Warn("Failed to fetch file '%s' in remote folder '%s'"
                             % (filename, self.folder.title.text))
            except Exception, e:
                self.__handle_error("Failed to remove file '%s' in remote folder '%s': %s"
                                    % (filename, self.folder.title.text, str(e)), raise_errors)

    def __handle_error(self, message, raise_errors = True):
        if raise_errors:
            raise BackendException(message)
        else:
            log.FatalError(message, log.ErrorCode.backend_error)
    
    def __authorize(self, email, password, captcha_token = None, captcha_response = None):
        try:
            self.client.client_login(email,
                                     password,
                                     source = 'duplicity $version',
                                     service = 'writely',
                                     captcha_token = captcha_token,
                                     captcha_response = captcha_response)
        except gdata.client.CaptchaChallenge, challenge:
            print('A captcha challenge in required. Please visit ' + challenge.captcha_url)
            answer = None
            while not answer:
                answer = raw_input('Answer to the challenge? ')
            self.__authorize(email, password, challenge.captcha_token, answer)
        except gdata.client.BadAuthentication:
            self.__handle_error('Invalid user credentials given. Be aware that accounts '
                                'that use 2-step verification require creating an application specific '
                                'access code for using this Duplicity backend. Follow the instrucction in '
                                'http://www.google.com/support/accounts/bin/static.py?page=guide.cs&guide=1056283&topic=1056286 '
                                'and create your application-specific password to run duplicity backups.')
        except Exception, e:
            self.__handle_error('Error while authenticating client: %s.' % str(e))

    def __fetch_entries(self, folder_id, type, title = None):
        # Build URI.
        uri = '/feeds/default/private/full/%s/contents' % folder_id
        if type == 'folder':
            uri += '/-/folder?showfolders=true'
        elif type == GDocsBackend.BACKUP_DOCUMENT_TYPE:
            uri += '?showfolders=false'
        else:
            uri += '?showfolders=true'
        if title:
            uri += '&title=' + urllib.quote(title) + '&title-exact=true'
        
        try:
            # Fetch entries
            entries = self.client.get_everything(uri = uri)
            
            # When filtering by entry title, API is returning (don't know why) documents in other
            # folders (apart from folder_id) matching the title, so some extra filtering is required.
            if title:
                result = []
                for entry in entries:
                    if (not type) or (entry.get_document_type() == type):
                        if folder_id != GDocsBackend.ROOT_FOLDER_ID:
                            for link in entry.in_folders():
                                folder_entry = self.client.get_entry(link.href, None, None,
                                                                     desired_class=gdata.docs.data.DocsEntry)
                                if folder_entry and (folder_entry.resource_id.text == folder_id):
                                    result.append(entry)
                        elif len(entry.in_folders()) == 0:
                            result.append(entry)
            else:
                result = entries
            
            # Done!
            return result
        except Exception, e:
            self.__handle_error('Error while fetching remote entries: %s.' % str(e))

duplicity.backend.register_backend('gdocs', GDocsBackend)