blob: 4aeb5c89d80b7150916793893c517fc801d1170e (
plain)
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
|
// Copyright (c) 2013 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_DRIVE_API_URL_GENERATOR_H_
#define CHROME_BROWSER_GOOGLE_APIS_DRIVE_API_URL_GENERATOR_H_
#include <string>
#include "googleurl/src/gurl.h"
namespace google_apis {
// This class is used to generate URLs for communicating with drive api
// servers for production, and a local server for testing.
class DriveApiUrlGenerator {
public:
// |base_url| is the path to the target drive api server.
// Note that this is an injecting point for a testing server.
explicit DriveApiUrlGenerator(const GURL& base_url);
~DriveApiUrlGenerator();
// The base URL for communicating with the production drive api server.
static const char kBaseUrlForProduction[];
// Returns a URL to fetch "about" data.
GURL GetAboutUrl() const;
// Returns a URL to fetch "applist" data.
GURL GetApplistUrl() const;
// Returns a URL to fetch a list of changes.
// override_url:
// The base url for the fetch. If empty, the default url is used.
// start_changestamp:
// The starting point of the requesting change list, or 0 if all changes
// are necessary.
GURL GetChangelistUrl(
const GURL& override_url, int64 start_changestamp) const;
// Returns a URL to fetch a list of files with the given |search_string|.
// override_url:
// The base url for the fetching. If empty, the default url is used.
// search_string: The search query.
GURL GetFilelistUrl(
const GURL& override_url, const std::string& search_string) const;
// Returns a URL to fetch a file content.
GURL GetFileUrl(const std::string& file_id) const;
// Returns a URL to trash a resource with the given |resource_id|.
// Note that the |resource_id| is corresponding to the "file id" in the
// document: https://developers.google.com/drive/v2/reference/files/trash
// but we use the term "resource" for consistency in our code.
GURL GetFileTrashUrl(const std::string& resource_id) const;
// Returns a URL to add a resource to a directory with |resource_id|.
// Note that the |resource_id| is corresponding to the "folder id" in the
// document: https://developers.google.com/drive/v2/reference/children/insert
// but we use the term "resource" for consistency in our code.
GURL GetChildrenUrl(const std::string& resource_id) const;
// Returns a URL to remove a resource with |child_id| from a directory
// with |folder_id|.
// Note that we use the name "folder" for the parameter, in order to be
// consistent with the drive API document:
// https://developers.google.com/drive/v2/reference/children/delete
GURL GetChildrenUrlForRemoval(const std::string& folder_id,
const std::string& child_id) const;
// Returns a URL to initiate uploading a new file.
GURL GetInitiateUploadNewFileUrl() const;
// Returns a URL to initiate uploading an existing file specified by
// |resource_id|.
GURL GetInitiateUploadExistingFileUrl(const std::string& resource_id) const;
private:
const GURL base_url_;
// This class is copyable hence no DISALLOW_COPY_AND_ASSIGN here.
};
} // namespace google_apis
#endif // CHROME_BROWSER_GOOGLE_APIS_DRIVE_API_URL_GENERATOR_H_
|