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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_
#define CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_
#include <string>
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "chrome/browser/google_apis/auth_service_observer.h"
#include "chrome/browser/google_apis/drive_service_interface.h"
#include "chrome/browser/google_apis/gdata_operations.h"
class FilePath;
class GURL;
class Profile;
namespace google_apis {
class AuthService;
class OperationRunner;
}
namespace drive {
// This class provides documents feed service calls for WAPI (codename for
// DocumentsList API).
// Details of API call are abstracted in each operation class and this class
// works as a thin wrapper for the API.
class GDataWapiService : public DriveServiceInterface,
public google_apis::AuthServiceObserver,
public google_apis::OperationRegistryObserver {
public:
// Instance is usually created by DriveSystemServiceFactory and owned by
// DriveFileSystem.
GDataWapiService();
virtual ~GDataWapiService();
google_apis::AuthService* auth_service_for_testing();
// DriveServiceInterface Overrides
virtual void Initialize(Profile* profile) OVERRIDE;
virtual void AddObserver(DriveServiceObserver* observer) OVERRIDE;
virtual void RemoveObserver(DriveServiceObserver* observer) OVERRIDE;
virtual bool CanStartOperation() const OVERRIDE;
virtual void CancelAll() OVERRIDE;
virtual bool CancelForFilePath(const FilePath& file_path) OVERRIDE;
virtual google_apis::OperationProgressStatusList GetProgressStatusList()
const OVERRIDE;
virtual void Authenticate(
const google_apis::AuthStatusCallback& callback) OVERRIDE;
virtual bool HasAccessToken() const OVERRIDE;
virtual bool HasRefreshToken() const OVERRIDE;
virtual void GetDocuments(
const GURL& feed_url,
int64 start_changestamp,
const std::string& search_query,
const std::string& directory_resource_id,
const google_apis::GetDataCallback& callback) OVERRIDE;
virtual void GetDocumentEntry
(const std::string& resource_id,
const google_apis::GetDataCallback& callback) OVERRIDE;
virtual void GetAccountMetadata(
const google_apis::GetDataCallback& callback) OVERRIDE;
virtual void GetApplicationInfo(
const google_apis::GetDataCallback& callback) OVERRIDE;
virtual void DeleteDocument(
const GURL& document_url,
const google_apis::EntryActionCallback& callback) OVERRIDE;
virtual void DownloadDocument(
const FilePath& virtual_path,
const FilePath& local_cache_path,
const GURL& content_url,
DocumentExportFormat format,
const google_apis::DownloadActionCallback& callback) OVERRIDE;
virtual void DownloadFile(
const FilePath& virtual_path,
const FilePath& local_cache_path,
const GURL& content_url,
const google_apis::DownloadActionCallback& download_action_callback,
const google_apis::GetContentCallback& get_content_callback) OVERRIDE;
virtual void CopyDocument(
const std::string& resource_id,
const FilePath::StringType& new_name,
const google_apis::GetDataCallback& callback) OVERRIDE;
virtual void RenameResource(
const GURL& document_url,
const FilePath::StringType& new_name,
const google_apis::EntryActionCallback& callback) OVERRIDE;
virtual void AddResourceToDirectory(
const GURL& parent_content_url,
const GURL& resource_url,
const google_apis::EntryActionCallback& callback) OVERRIDE;
virtual void RemoveResourceFromDirectory(
const GURL& parent_content_url,
const GURL& resource_url,
const std::string& resource_id,
const google_apis::EntryActionCallback& callback) OVERRIDE;
virtual void CreateDirectory(
const GURL& parent_content_url,
const FilePath::StringType& directory_name,
const google_apis::GetDataCallback& callback) OVERRIDE;
virtual void InitiateUpload(
const google_apis::InitiateUploadParams& params,
const google_apis::InitiateUploadCallback& callback) OVERRIDE;
virtual void ResumeUpload(
const google_apis::ResumeUploadParams& params,
const google_apis::ResumeUploadCallback& callback) OVERRIDE;
virtual void AuthorizeApp(
const GURL& resource_url,
const std::string& app_id,
const google_apis::GetDataCallback& callback) OVERRIDE;
private:
google_apis::OperationRegistry* operation_registry() const;
// AuthService::Observer override.
virtual void OnOAuth2RefreshTokenChanged() OVERRIDE;
// DriveServiceObserver Overrides
virtual void OnProgressUpdate(
const google_apis::OperationProgressStatusList& list) OVERRIDE;
virtual void OnAuthenticationFailed(
google_apis::GDataErrorCode error) OVERRIDE;
scoped_ptr<google_apis::OperationRunner> runner_;
ObserverList<DriveServiceObserver> observers_;
DISALLOW_COPY_AND_ASSIGN(GDataWapiService);
};
} // namespace drive
#endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_WAPI_SERVICE_H_
|