// 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_DRIVE_GDATA_WAPI_SERVICE_H_ #define CHROME_BROWSER_DRIVE_GDATA_WAPI_SERVICE_H_ #include #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" #include "base/observer_list.h" #include "chrome/browser/drive/drive_service_interface.h" #include "chrome/browser/google_apis/auth_service_observer.h" #include "chrome/browser/google_apis/gdata_wapi_requests.h" #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" class GURL; class Profile; namespace base { class FilePath; class TaskRunner; } namespace google_apis { class AuthService; class RequestSender; } namespace net { class URLRequestContextGetter; } // namespace net namespace drive { // This class provides documents feed service calls for WAPI (codename for // DocumentsList API). // Details of API call are abstracted in each request class and this class // works as a thin wrapper for the API. class GDataWapiService : public DriveServiceInterface, public google_apis::AuthServiceObserver { public: // |url_request_context_getter| is used to initialize URLFetcher. // |blocking_task_runner| is used to run blocking tasks (like parsing JSON). // |base_url| is used to generate URLs for communicating with the WAPI // |base_download_url| is used to generate URLs for downloading file with WAPI // |custom_user_agent| is used for the User-Agent header in HTTP // requests issued through the service if the value is not empty. GDataWapiService(net::URLRequestContextGetter* url_request_context_getter, base::TaskRunner* blocking_task_runner, const GURL& base_url, const GURL& base_download_url, const std::string& custom_user_agent); 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 CanSendRequest() const OVERRIDE; virtual std::string CanonicalizeResourceId( const std::string& resource_id) const OVERRIDE; virtual bool HasAccessToken() const OVERRIDE; virtual bool HasRefreshToken() const OVERRIDE; virtual void ClearAccessToken() OVERRIDE; virtual void ClearRefreshToken() OVERRIDE; virtual std::string GetRootResourceId() const OVERRIDE; virtual google_apis::CancelCallback GetAllResourceList( const google_apis::GetResourceListCallback& callback) OVERRIDE; virtual google_apis::CancelCallback GetResourceListInDirectory( const std::string& directory_resource_id, const google_apis::GetResourceListCallback& callback) OVERRIDE; virtual google_apis::CancelCallback Search( const std::string& search_query, const google_apis::GetResourceListCallback& callback) OVERRIDE; virtual google_apis::CancelCallback SearchByTitle( const std::string& title, const std::string& directory_resource_id, const google_apis::GetResourceListCallback& callback) OVERRIDE; virtual google_apis::CancelCallback GetChangeList( int64 start_changestamp, const google_apis::GetResourceListCallback& callback) OVERRIDE; virtual google_apis::CancelCallback ContinueGetResourceList( const GURL& override_url, const google_apis::GetResourceListCallback& callback) OVERRIDE; virtual google_apis::CancelCallback GetResourceEntry( const std::string& resource_id, const google_apis::GetResourceEntryCallback& callback) OVERRIDE; virtual google_apis::CancelCallback GetAboutResource( const google_apis::GetAboutResourceCallback& callback) OVERRIDE; virtual google_apis::CancelCallback GetAppList( const google_apis::GetAppListCallback& callback) OVERRIDE; virtual google_apis::CancelCallback DeleteResource( const std::string& resource_id, const std::string& etag, const google_apis::EntryActionCallback& callback) OVERRIDE; virtual google_apis::CancelCallback DownloadFile( const base::FilePath& local_cache_path, const std::string& resource_id, const google_apis::DownloadActionCallback& download_action_callback, const google_apis::GetContentCallback& get_content_callback, const google_apis::ProgressCallback& progress_callback) OVERRIDE; virtual google_apis::CancelCallback CopyResource( const std::string& resource_id, const std::string& parent_resource_id, const std::string& new_title, const google_apis::GetResourceEntryCallback& callback) OVERRIDE; virtual google_apis::CancelCallback CopyHostedDocument( const std::string& resource_id, const std::string& new_title, const google_apis::GetResourceEntryCallback& callback) OVERRIDE; virtual google_apis::CancelCallback RenameResource( const std::string& resource_id, const std::string& new_title, const google_apis::EntryActionCallback& callback) OVERRIDE; virtual google_apis::CancelCallback TouchResource( const std::string& resource_id, const base::Time& modified_date, const base::Time& last_viewed_by_me_date, const google_apis::GetResourceEntryCallback& callback) OVERRIDE; virtual google_apis::CancelCallback AddResourceToDirectory( const std::string& parent_resource_id, const std::string& resource_id, const google_apis::EntryActionCallback& callback) OVERRIDE; virtual google_apis::CancelCallback RemoveResourceFromDirectory( const std::string& parent_resource_id, const std::string& resource_id, const google_apis::EntryActionCallback& callback) OVERRIDE; virtual google_apis::CancelCallback AddNewDirectory( const std::string& parent_resource_id, const std::string& directory_title, const google_apis::GetResourceEntryCallback& callback) OVERRIDE; virtual google_apis::CancelCallback InitiateUploadNewFile( const std::string& content_type, int64 content_length, const std::string& parent_resource_id, const std::string& title, const google_apis::InitiateUploadCallback& callback) OVERRIDE; virtual google_apis::CancelCallback InitiateUploadExistingFile( const std::string& content_type, int64 content_length, const std::string& resource_id, const std::string& etag, const google_apis::InitiateUploadCallback& callback) OVERRIDE; virtual google_apis::CancelCallback ResumeUpload( const GURL& upload_url, int64 start_position, int64 end_position, int64 content_length, const std::string& content_type, const base::FilePath& local_file_path, const google_apis::UploadRangeCallback& callback, const google_apis::ProgressCallback& progress_callback) OVERRIDE; virtual google_apis::CancelCallback GetUploadStatus( const GURL& upload_url, int64 content_length, const google_apis::UploadRangeCallback& callback) OVERRIDE; virtual google_apis::CancelCallback AuthorizeApp( const std::string& resource_id, const std::string& app_id, const google_apis::AuthorizeAppCallback& callback) OVERRIDE; private: // AuthService::Observer override. virtual void OnOAuth2RefreshTokenChanged() OVERRIDE; net::URLRequestContextGetter* url_request_context_getter_; // Not owned. scoped_refptr blocking_task_runner_; scoped_ptr sender_; ObserverList observers_; // Request objects should hold a copy of this, rather than a const // reference, as they may outlive this object. const google_apis::GDataWapiUrlGenerator url_generator_; const std::string custom_user_agent_; DISALLOW_COPY_AND_ASSIGN(GDataWapiService); }; } // namespace drive #endif // CHROME_BROWSER_DRIVE_GDATA_WAPI_SERVICE_H_