-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloud_services.py
More file actions
633 lines (517 loc) · 23.7 KB
/
Copy pathcloud_services.py
File metadata and controls
633 lines (517 loc) · 23.7 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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
import os
import json
import requests
import webbrowser
import time
from urllib.parse import urlparse, parse_qs, urlencode, quote
class CloudServiceError(Exception):
"""Base exception for cloud service errors"""
pass
class CloudServiceAuthError(CloudServiceError):
"""Authentication error for cloud services"""
pass
class CloudService:
"""Base class for cloud service implementations"""
def __init__(self):
self.authenticated = False
self.token = None
self.config_path = None
def authenticate(self):
"""Authenticate with the cloud service"""
raise NotImplementedError("Authentication not implemented")
def is_authenticated(self):
"""Check if authenticated"""
return self.authenticated
def logout(self):
"""Logout from the service"""
self.authenticated = False
self.token = None
self.save_config()
def save_config(self):
"""Save configuration to file"""
if not self.config_path:
return
config_dir = os.path.dirname(self.config_path)
if not os.path.exists(config_dir):
os.makedirs(config_dir)
try:
with open(self.config_path, 'w') as f:
json.dump(self.get_config(), f)
except Exception as e:
print(f"Error saving config: {e}")
def load_config(self):
"""Load configuration from file"""
if not self.config_path or not os.path.exists(self.config_path):
return False
try:
with open(self.config_path, 'r') as f:
config = json.load(f)
self.set_config(config)
return True
except Exception as e:
print(f"Error loading config: {e}")
return False
def get_config(self):
"""Get configuration for saving"""
return {"token": self.token, "authenticated": self.authenticated}
def set_config(self, config):
"""Set configuration from loaded data"""
self.token = config.get("token")
self.authenticated = config.get("authenticated", False)
def get_file_info(self, file_url):
"""Get information about a file"""
raise NotImplementedError("Get file info not implemented")
def get_download_url(self, file_url):
"""Get direct download URL for a file"""
raise NotImplementedError("Get download URL not implemented")
class GoogleDriveService(CloudService):
"""Implementation for Google Drive"""
def __init__(self, client_id=None, client_secret=None):
super().__init__()
self.client_id = client_id
self.client_secret = client_secret
self.refresh_token = None
self.token_expires = 0
# Set up config path
app_dir = os.path.dirname(os.path.abspath(__file__))
config_dir = os.path.join(app_dir, 'config')
self.config_path = os.path.join(config_dir, 'gdrive_config.json')
# Try to load existing config
self.load_config()
def get_config(self):
"""Get configuration for saving"""
return {
"token": self.token,
"refresh_token": self.refresh_token,
"token_expires": self.token_expires,
"authenticated": self.authenticated
}
def set_config(self, config):
"""Set configuration from loaded data"""
self.token = config.get("token")
self.refresh_token = config.get("refresh_token")
self.token_expires = config.get("token_expires", 0)
self.authenticated = config.get("authenticated", False)
# Check if token is expired and needs refresh
if self.token and self.refresh_token and time.time() > self.token_expires:
try:
self._refresh_access_token()
except Exception:
# If refresh fails, we'll need to re-authenticate
pass
def authenticate(self):
"""Start OAuth flow for Google Drive"""
if not self.client_id or not self.client_secret:
raise CloudServiceAuthError("Client ID and Client Secret are required")
# This is a simplification. In a real app, you would:
# 1. Generate an auth URL
# 2. Open browser or show URL to user
# 3. Get the authorization code from redirect
# 4. Exchange code for tokens
print("Please authenticate with Google in your browser...")
auth_url = (
"https://accounts.google.com/o/oauth2/auth?"
f"client_id={self.client_id}&"
"response_type=code&"
"scope=https://www.googleapis.com/auth/drive.readonly&"
"access_type=offline&"
"redirect_uri=http://localhost:8080"
)
webbrowser.open(auth_url)
# In a real app, you would have a local server listening on the redirect URI
# to capture the authorization code
auth_code = input("Enter the authorization code from the browser: ")
# Exchange code for tokens
token_url = "https://oauth2.googleapis.com/token"
data = {
"code": auth_code,
"client_id": self.client_id,
"client_secret": self.client_secret,
"redirect_uri": "http://localhost:8080",
"grant_type": "authorization_code"
}
response = requests.post(token_url, data=data)
if response.status_code != 200:
raise CloudServiceAuthError(f"Authentication failed: {response.text}")
token_data = response.json()
self.token = token_data.get("access_token")
self.refresh_token = token_data.get("refresh_token")
self.token_expires = time.time() + token_data.get("expires_in", 3600)
self.authenticated = True
self.save_config()
return True
def _refresh_access_token(self):
"""Refresh the access token using the refresh token"""
if not self.refresh_token:
raise CloudServiceAuthError("No refresh token available")
token_url = "https://oauth2.googleapis.com/token"
data = {
"refresh_token": self.refresh_token,
"client_id": self.client_id,
"client_secret": self.client_secret,
"grant_type": "refresh_token"
}
response = requests.post(token_url, data=data)
if response.status_code != 200:
raise CloudServiceAuthError(f"Token refresh failed: {response.text}")
token_data = response.json()
self.token = token_data.get("access_token")
self.token_expires = time.time() + token_data.get("expires_in", 3600)
self.save_config()
return True
def get_file_info(self, file_url):
"""Get information about a Google Drive file"""
# Extract file ID from URL
file_id = self._extract_file_id(file_url)
if not file_id:
raise CloudServiceError("Invalid Google Drive URL")
# Check authentication and refresh if needed
if not self.is_authenticated() or time.time() > self.token_expires:
if self.refresh_token:
self._refresh_access_token()
else:
raise CloudServiceAuthError("Not authenticated")
# Get file metadata
url = f"https://www.googleapis.com/drive/v3/files/{file_id}"
params = {"fields": "name,size,mimeType"}
headers = {"Authorization": f"Bearer {self.token}"}
response = requests.get(url, headers=headers, params=params)
if response.status_code != 200:
if response.status_code == 401:
# Token expired or invalid
self._refresh_access_token()
# Retry request
headers = {"Authorization": f"Bearer {self.token}"}
response = requests.get(url, headers=headers, params=params)
if response.status_code != 200:
raise CloudServiceError(f"Error getting file info: {response.text}")
else:
raise CloudServiceError(f"Error getting file info: {response.text}")
file_info = response.json()
return {
"name": file_info.get("name"),
"size": int(file_info.get("size", 0)),
"mime_type": file_info.get("mimeType"),
"url": file_url,
"file_id": file_id
}
def get_download_url(self, file_url):
"""Get direct download URL for a Google Drive file"""
file_id = self._extract_file_id(file_url)
if not file_id:
raise CloudServiceError("Invalid Google Drive URL")
# Check authentication and refresh if needed
if not self.is_authenticated() or time.time() > self.token_expires:
if self.refresh_token:
self._refresh_access_token()
else:
raise CloudServiceAuthError("Not authenticated")
# Get download URL
return f"https://www.googleapis.com/drive/v3/files/{file_id}?alt=media&access_token={self.token}"
def _extract_file_id(self, url):
"""Extract file ID from Google Drive URL"""
parsed_url = urlparse(url)
# Handle different URL formats
if parsed_url.netloc == "drive.google.com":
if parsed_url.path.startswith("/file/d/"):
# https://drive.google.com/file/d/{file_id}/view
parts = parsed_url.path.split("/")
if len(parts) >= 4:
return parts[3]
elif parsed_url.path == "/open":
# https://drive.google.com/open?id={file_id}
query = parse_qs(parsed_url.query)
return query.get("id", [None])[0]
return None
class DropboxService(CloudService):
"""Implementation for Dropbox"""
def __init__(self, app_key=None, app_secret=None):
super().__init__()
self.app_key = app_key
self.app_secret = app_secret
# Set up config path
app_dir = os.path.dirname(os.path.abspath(__file__))
config_dir = os.path.join(app_dir, 'config')
self.config_path = os.path.join(config_dir, 'dropbox_config.json')
# Try to load existing config
self.load_config()
def authenticate(self):
"""Start OAuth flow for Dropbox"""
if not self.app_key or not self.app_secret:
raise CloudServiceAuthError("App Key and App Secret are required")
# This is a simplification. In a real app, you would:
# 1. Generate an auth URL
# 2. Open browser or show URL to user
# 3. Get the authorization code from redirect
# 4. Exchange code for tokens
print("Please authenticate with Dropbox in your browser...")
auth_url = (
"https://www.dropbox.com/oauth2/authorize?"
f"client_id={self.app_key}&"
"response_type=code&"
"token_access_type=offline"
)
webbrowser.open(auth_url)
# In a real app, you would have a local server listening on the redirect URI
# to capture the authorization code
auth_code = input("Enter the authorization code from the browser: ")
# Exchange code for tokens
token_url = "https://api.dropboxapi.com/oauth2/token"
data = {
"code": auth_code,
"grant_type": "authorization_code",
"client_id": self.app_key,
"client_secret": self.app_secret
}
response = requests.post(token_url, data=data)
if response.status_code != 200:
raise CloudServiceAuthError(f"Authentication failed: {response.text}")
token_data = response.json()
self.token = token_data.get("access_token")
self.authenticated = True
self.save_config()
return True
def get_file_info(self, file_url):
"""Get information about a Dropbox file"""
# Extract file path from URL
file_path = self._extract_file_path(file_url)
if not file_path:
raise CloudServiceError("Invalid Dropbox URL")
# Check authentication
if not self.is_authenticated():
raise CloudServiceAuthError("Not authenticated")
# Get file metadata
url = "https://api.dropboxapi.com/2/files/get_metadata"
headers = {
"Authorization": f"Bearer {self.token}",
"Content-Type": "application/json"
}
data = {"path": file_path}
response = requests.post(url, headers=headers, json=data)
if response.status_code != 200:
raise CloudServiceError(f"Error getting file info: {response.text}")
file_info = response.json()
return {
"name": file_info.get("name"),
"size": file_info.get("size", 0),
"path": file_path,
"url": file_url
}
def get_download_url(self, file_url):
"""Get direct download URL for a Dropbox file"""
file_path = self._extract_file_path(file_url)
if not file_path:
raise CloudServiceError("Invalid Dropbox URL")
# Check authentication
if not self.is_authenticated():
raise CloudServiceAuthError("Not authenticated")
# Create direct download link
url = "https://api.dropboxapi.com/2/files/get_temporary_link"
headers = {
"Authorization": f"Bearer {self.token}",
"Content-Type": "application/json"
}
data = {"path": file_path}
response = requests.post(url, headers=headers, json=data)
if response.status_code != 200:
raise CloudServiceError(f"Error getting download URL: {response.text}")
link_data = response.json()
return link_data.get("link")
def _extract_file_path(self, url):
"""Extract file path from Dropbox URL"""
parsed_url = urlparse(url)
# Handle different URL formats
if parsed_url.netloc in ["www.dropbox.com", "dropbox.com"]:
if parsed_url.path.startswith("/s/"):
# Shared link - we need to resolve it
# This is simplified - in a real app, you would use the Dropbox API
return None
elif parsed_url.path.startswith("/scl/"):
# Another shared link format
return None
else:
# Handle direct path format
return parsed_url.path
return None
class OneDriveService(CloudService):
"""Implementation for OneDrive"""
def __init__(self, client_id=None, client_secret=None):
super().__init__()
self.client_id = client_id
self.client_secret = client_secret
self.refresh_token = None
self.token_expires = 0
# Set up config path
app_dir = os.path.dirname(os.path.abspath(__file__))
config_dir = os.path.join(app_dir, 'config')
self.config_path = os.path.join(config_dir, 'onedrive_config.json')
# Try to load existing config
self.load_config()
def get_config(self):
"""Get configuration for saving"""
return {
"token": self.token,
"refresh_token": self.refresh_token,
"token_expires": self.token_expires,
"authenticated": self.authenticated
}
def set_config(self, config):
"""Set configuration from loaded data"""
self.token = config.get("token")
self.refresh_token = config.get("refresh_token")
self.token_expires = config.get("token_expires", 0)
self.authenticated = config.get("authenticated", False)
# Check if token is expired and needs refresh
if self.token and self.refresh_token and time.time() > self.token_expires:
try:
self._refresh_access_token()
except Exception:
# If refresh fails, we'll need to re-authenticate
pass
def authenticate(self):
"""Start OAuth flow for OneDrive"""
if not self.client_id or not self.client_secret:
raise CloudServiceAuthError("Client ID and Client Secret are required")
# This is a simplification. In a real app, you would:
# 1. Generate an auth URL
# 2. Open browser or show URL to user
# 3. Get the authorization code from redirect
# 4. Exchange code for tokens
print("Please authenticate with OneDrive in your browser...")
auth_url = (
"https://login.microsoftonline.com/common/oauth2/v2.0/authorize?"
f"client_id={self.client_id}&"
"response_type=code&"
"scope=files.read offline_access&"
"redirect_uri=http://localhost:8080"
)
webbrowser.open(auth_url)
# In a real app, you would have a local server listening on the redirect URI
# to capture the authorization code
auth_code = input("Enter the authorization code from the browser: ")
# Exchange code for tokens
token_url = "https://login.microsoftonline.com/common/oauth2/v2.0/token"
data = {
"code": auth_code,
"client_id": self.client_id,
"client_secret": self.client_secret,
"redirect_uri": "http://localhost:8080",
"grant_type": "authorization_code"
}
response = requests.post(token_url, data=data)
if response.status_code != 200:
raise CloudServiceAuthError(f"Authentication failed: {response.text}")
token_data = response.json()
self.token = token_data.get("access_token")
self.refresh_token = token_data.get("refresh_token")
self.token_expires = time.time() + token_data.get("expires_in", 3600)
self.authenticated = True
self.save_config()
return True
def _refresh_access_token(self):
"""Refresh the access token using the refresh token"""
if not self.refresh_token:
raise CloudServiceAuthError("No refresh token available")
token_url = "https://login.microsoftonline.com/common/oauth2/v2.0/token"
data = {
"refresh_token": self.refresh_token,
"client_id": self.client_id,
"client_secret": self.client_secret,
"grant_type": "refresh_token"
}
response = requests.post(token_url, data=data)
if response.status_code != 200:
raise CloudServiceAuthError(f"Token refresh failed: {response.text}")
token_data = response.json()
self.token = token_data.get("access_token")
self.token_expires = time.time() + token_data.get("expires_in", 3600)
self.save_config()
return True
def get_file_info(self, file_url):
"""Get information about a OneDrive file"""
# Extract item ID and drive ID from URL
file_id = self._extract_file_id(file_url)
if not file_id:
raise CloudServiceError("Invalid OneDrive URL")
# Check authentication and refresh if needed
if not self.is_authenticated() or time.time() > self.token_expires:
if self.refresh_token:
self._refresh_access_token()
else:
raise CloudServiceAuthError("Not authenticated")
# Get file metadata
url = f"https://graph.microsoft.com/v1.0/me/drive/items/{file_id}"
headers = {"Authorization": f"Bearer {self.token}"}
response = requests.get(url, headers=headers)
if response.status_code != 200:
if response.status_code == 401:
# Token expired or invalid
self._refresh_access_token()
# Retry request
headers = {"Authorization": f"Bearer {self.token}"}
response = requests.get(url, headers=headers)
if response.status_code != 200:
raise CloudServiceError(f"Error getting file info: {response.text}")
else:
raise CloudServiceError(f"Error getting file info: {response.text}")
file_info = response.json()
return {
"name": file_info.get("name"),
"size": file_info.get("size", 0),
"url": file_url,
"file_id": file_id
}
def get_download_url(self, file_url):
"""Get direct download URL for a OneDrive file"""
file_id = self._extract_file_id(file_url)
if not file_id:
raise CloudServiceError("Invalid OneDrive URL")
# Check authentication and refresh if needed
if not self.is_authenticated() or time.time() > self.token_expires:
if self.refresh_token:
self._refresh_access_token()
else:
raise CloudServiceAuthError("Not authenticated")
# Get download URL
url = f"https://graph.microsoft.com/v1.0/me/drive/items/{file_id}/content"
headers = {"Authorization": f"Bearer {self.token}"}
response = requests.get(url, headers=headers, allow_redirects=False)
if response.status_code == 302:
# Follow redirect to get the download URL
return response.headers.get("Location")
else:
raise CloudServiceError(f"Error getting download URL: {response.status_code} - {response.text}")
def _extract_file_id(self, url):
"""Extract file ID from OneDrive URL"""
parsed_url = urlparse(url)
# Handle different URL formats
if parsed_url.netloc in ["onedrive.live.com", "1drv.ms"]:
query = parse_qs(parsed_url.query)
# Look for item ID in query parameters
if "id" in query:
return query["id"][0]
elif "resid" in query:
return query["resid"][0]
return None
# Factory to create cloud service instances
def create_cloud_service(service_name, **kwargs):
"""Create a cloud service instance by name"""
if service_name.lower() == "gdrive" or service_name.lower() == "google_drive":
return GoogleDriveService(**kwargs)
elif service_name.lower() == "dropbox":
return DropboxService(**kwargs)
elif service_name.lower() == "onedrive":
return OneDriveService(**kwargs)
else:
raise ValueError(f"Unsupported cloud service: {service_name}")
def detect_cloud_service(url):
"""Detect cloud service from URL"""
parsed_url = urlparse(url)
if parsed_url.netloc in ["drive.google.com", "docs.google.com"]:
return "gdrive"
elif parsed_url.netloc in ["dropbox.com", "www.dropbox.com"]:
return "dropbox"
elif parsed_url.netloc in ["onedrive.live.com", "1drv.ms"]:
return "onedrive"
else:
return None