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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "google_apis/drive/drive_api_url_generator.h"
#include "base/check_op.h"
#include "base/command_line.h"
#include "base/notreached.h"
#include "base/strings/escape.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "google_apis/google_api_keys.h"
#include "net/base/url_util.h"
namespace google_apis {
namespace {
// Hard coded URLs for communication with a google drive server.
// TODO(yamaguchi): Make a utility function to compose some of these URLs by a
// version and a resource name.
const char kDriveV2AboutUrl[] = "drive/v2/about";
const char kDriveV2ChangelistUrl[] = "drive/v2/changes";
const char kDriveV2StartPageTokenUrl[] = "drive/v2/changes/startPageToken";
const char kDriveV2FilesUrl[] = "drive/v2/files";
const char kDriveV2FileUrlPrefix[] = "drive/v2/files/";
const char kDriveV2ChildrenUrlFormat[] = "drive/v2/files/%s/children";
const char kDriveV2ChildrenUrlForRemovalFormat[] =
"drive/v2/files/%s/children/%s";
const char kDriveV2FileCopyUrlFormat[] = "drive/v2/files/%s/copy";
const char kDriveV2FileDeleteUrlFormat[] = "drive/v2/files/%s";
const char kDriveV2FileTrashUrlFormat[] = "drive/v2/files/%s/trash";
const char kDriveV2UploadNewFileUrl[] = "upload/drive/v2/files";
const char kDriveV2UploadExistingFileUrlPrefix[] = "upload/drive/v2/files/";
const char kDriveV2BatchUploadUrl[] = "upload/drive";
const char kDriveV2PermissionsUrlFormat[] = "drive/v2/files/%s/permissions";
const char kDriveV2DownloadUrlFormat[] = "drive/v2/files/%s?alt=media";
const char kDriveV2ThumbnailUrlFormat[] = "d/%s=w%d-h%d%s";
const char kDriveV2TeamDrivesUrl[] = "drive/v2/teamdrives";
const char kIncludeTeamDriveItems[] = "includeTeamDriveItems";
const char kSupportsTeamDrives[] = "supportsTeamDrives";
const char kCorpora[] = "corpora";
const char kCorporaAllTeamDrives[] = "default,allTeamDrives";
const char kCorporaDefault[] = "default";
const char kCorporaTeamDrive[] = "teamDrive";
const char kTeamDriveId[] = "teamDriveId";
GURL AddResumableUploadParam(const GURL& url) {
return net::AppendOrReplaceQueryParameter(url, "uploadType", "resumable");
}
GURL AddMultipartUploadParam(const GURL& url) {
return net::AppendOrReplaceQueryParameter(url, "uploadType", "multipart");
}
const char* GetCorporaString(FilesListCorpora corpora) {
switch (corpora) {
case FilesListCorpora::DEFAULT:
return kCorporaDefault;
case FilesListCorpora::TEAM_DRIVE:
return kCorporaTeamDrive;
case FilesListCorpora::ALL_TEAM_DRIVES:
return kCorporaAllTeamDrives;
}
NOTREACHED();
}
} // namespace
DriveApiUrlGenerator::DriveApiUrlGenerator(const GURL& base_url,
const GURL& base_thumbnail_url)
: base_url_(base_url), base_thumbnail_url_(base_thumbnail_url) {
// Do nothing.
}
DriveApiUrlGenerator::DriveApiUrlGenerator(const DriveApiUrlGenerator& src) =
default;
DriveApiUrlGenerator::~DriveApiUrlGenerator() {
// Do nothing.
}
const char DriveApiUrlGenerator::kBaseThumbnailUrlForProduction[] =
"https://lh3.googleusercontent.com";
GURL DriveApiUrlGenerator::GetAboutGetUrl() const {
return base_url_.Resolve(kDriveV2AboutUrl);
}
GURL DriveApiUrlGenerator::GetFilesGetUrl(const std::string& file_id,
const GURL& embed_origin) const {
GURL url =
base_url_.Resolve(kDriveV2FileUrlPrefix + base::EscapePath(file_id));
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
if (!embed_origin.is_empty()) {
// Construct a valid serialized embed origin from an url, according to
// WD-html5-20110525. Such string has to be built manually, since
// GURL::spec() always adds the trailing slash. Moreover, ports are
// currently not supported.
DCHECK(!embed_origin.has_port());
DCHECK(!embed_origin.has_path() || embed_origin.path() == "/");
const std::string serialized_embed_origin =
embed_origin.scheme() + "://" + embed_origin.host();
url = net::AppendOrReplaceQueryParameter(
url, "embedOrigin", serialized_embed_origin);
}
return url;
}
GURL DriveApiUrlGenerator::GetFilesInsertUrl(
const std::string& visibility) const {
GURL url = base_url_.Resolve(kDriveV2FilesUrl);
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
if (!visibility.empty())
url = net::AppendOrReplaceQueryParameter(url, "visibility", visibility);
return url;
}
GURL DriveApiUrlGenerator::GetFilesPatchUrl(const std::string& file_id,
bool set_modified_date,
bool update_viewed_date) const {
GURL url =
base_url_.Resolve(kDriveV2FileUrlPrefix + base::EscapePath(file_id));
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
// setModifiedDate is "false" by default.
if (set_modified_date)
url = net::AppendOrReplaceQueryParameter(url, "setModifiedDate", "true");
// updateViewedDate is "true" by default.
if (!update_viewed_date)
url = net::AppendOrReplaceQueryParameter(url, "updateViewedDate", "false");
return url;
}
GURL DriveApiUrlGenerator::GetFilesCopyUrl(
const std::string& file_id,
const std::string& visibility) const {
GURL url = base_url_.Resolve(base::StringPrintf(
kDriveV2FileCopyUrlFormat, base::EscapePath(file_id).c_str()));
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
if (!visibility.empty())
url = net::AppendOrReplaceQueryParameter(url, "visibility", visibility);
return url;
}
GURL DriveApiUrlGenerator::GetFilesListUrl(int max_results,
const std::string& page_token,
FilesListCorpora corpora,
const std::string& team_drive_id,
const std::string& q) const {
GURL url = base_url_.Resolve(kDriveV2FilesUrl);
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
url = net::AppendOrReplaceQueryParameter(url, kIncludeTeamDriveItems, "true");
url = net::AppendOrReplaceQueryParameter(url, kCorpora,
GetCorporaString(corpora));
if (!team_drive_id.empty())
url = net::AppendOrReplaceQueryParameter(url, kTeamDriveId, team_drive_id);
// maxResults is 100 by default.
if (max_results != 100) {
url = net::AppendOrReplaceQueryParameter(url, "maxResults",
base::NumberToString(max_results));
}
if (!page_token.empty())
url = net::AppendOrReplaceQueryParameter(url, "pageToken", page_token);
if (!q.empty())
url = net::AppendOrReplaceQueryParameter(url, "q", q);
return url;
}
GURL DriveApiUrlGenerator::GetFilesDeleteUrl(const std::string& file_id) const {
GURL url = base_url_.Resolve(base::StringPrintf(
kDriveV2FileDeleteUrlFormat, base::EscapePath(file_id).c_str()));
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
return url;
}
GURL DriveApiUrlGenerator::GetFilesTrashUrl(const std::string& file_id) const {
GURL url = base_url_.Resolve(base::StringPrintf(
kDriveV2FileTrashUrlFormat, base::EscapePath(file_id).c_str()));
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
return url;
}
GURL DriveApiUrlGenerator::GetChangesListUrl(
bool include_deleted,
int max_results,
const std::string& page_token,
int64_t start_change_id,
const std::string& team_drive_id) const {
DCHECK_GE(start_change_id, 0);
GURL url = base_url_.Resolve(kDriveV2ChangelistUrl);
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
url = net::AppendOrReplaceQueryParameter(url, kIncludeTeamDriveItems, "true");
if (!team_drive_id.empty()) {
url = net::AppendOrReplaceQueryParameter(url, kTeamDriveId, team_drive_id);
}
// includeDeleted is "true" by default.
if (!include_deleted)
url = net::AppendOrReplaceQueryParameter(url, "includeDeleted", "false");
// maxResults is "100" by default.
if (max_results != 100) {
url = net::AppendOrReplaceQueryParameter(url, "maxResults",
base::NumberToString(max_results));
}
if (!page_token.empty())
url = net::AppendOrReplaceQueryParameter(url, "pageToken", page_token);
if (start_change_id > 0)
url = net::AppendOrReplaceQueryParameter(
url, "startChangeId", base::NumberToString(start_change_id));
return url;
}
GURL DriveApiUrlGenerator::GetChildrenInsertUrl(
const std::string& file_id) const {
GURL url = base_url_.Resolve(base::StringPrintf(
kDriveV2ChildrenUrlFormat, base::EscapePath(file_id).c_str()));
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
return url;
}
GURL DriveApiUrlGenerator::GetChildrenDeleteUrl(
const std::string& child_id, const std::string& folder_id) const {
return base_url_.Resolve(base::StringPrintf(
kDriveV2ChildrenUrlForRemovalFormat, base::EscapePath(folder_id).c_str(),
base::EscapePath(child_id).c_str()));
}
GURL DriveApiUrlGenerator::GetInitiateUploadNewFileUrl(
bool set_modified_date) const {
GURL url = AddResumableUploadParam(
base_url_.Resolve(kDriveV2UploadNewFileUrl));
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
// setModifiedDate is "false" by default.
if (set_modified_date)
url = net::AppendOrReplaceQueryParameter(url, "setModifiedDate", "true");
return url;
}
GURL DriveApiUrlGenerator::GetInitiateUploadExistingFileUrl(
const std::string& resource_id,
bool set_modified_date) const {
GURL url = base_url_.Resolve(kDriveV2UploadExistingFileUrlPrefix +
base::EscapePath(resource_id));
url = AddResumableUploadParam(url);
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
// setModifiedDate is "false" by default.
if (set_modified_date)
url = net::AppendOrReplaceQueryParameter(url, "setModifiedDate", "true");
return url;
}
GURL DriveApiUrlGenerator::GetMultipartUploadNewFileUrl(bool set_modified_date,
bool convert) const {
GURL url = AddMultipartUploadParam(
base_url_.Resolve(kDriveV2UploadNewFileUrl));
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
// setModifiedDate is "false" by default.
if (set_modified_date)
url = net::AppendOrReplaceQueryParameter(url, "setModifiedDate", "true");
if (convert) {
url = net::AppendOrReplaceQueryParameter(url, "convert", "true");
}
return url;
}
GURL DriveApiUrlGenerator::GetMultipartUploadExistingFileUrl(
const std::string& resource_id,
bool set_modified_date) const {
GURL url = base_url_.Resolve(kDriveV2UploadExistingFileUrlPrefix +
base::EscapePath(resource_id));
url = AddMultipartUploadParam(url);
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
// setModifiedDate is "false" by default.
if (set_modified_date)
url = net::AppendOrReplaceQueryParameter(url, "setModifiedDate", "true");
return url;
}
GURL DriveApiUrlGenerator::GenerateDownloadFileUrl(
const std::string& resource_id) const {
GURL url = base_url_.Resolve(base::StringPrintf(
kDriveV2DownloadUrlFormat, base::EscapePath(resource_id).c_str()));
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
return url;
}
GURL DriveApiUrlGenerator::GetPermissionsInsertUrl(
const std::string& resource_id) const {
GURL url = base_url_.Resolve(base::StringPrintf(
kDriveV2PermissionsUrlFormat, base::EscapePath(resource_id).c_str()));
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
return url;
}
GURL DriveApiUrlGenerator::GetThumbnailUrl(const std::string& resource_id,
int width,
int height,
bool crop) const {
return base_thumbnail_url_.Resolve(base::StringPrintf(
kDriveV2ThumbnailUrlFormat, base::EscapePath(resource_id).c_str(), width,
height, crop ? "-c" : ""));
}
GURL DriveApiUrlGenerator::GetBatchUploadUrl() const {
GURL url = base_url_.Resolve(kDriveV2BatchUploadUrl);
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
return url;
}
GURL DriveApiUrlGenerator::GetTeamDriveListUrl(
int max_results,
const std::string& page_token) const {
GURL url = base_url_.Resolve(kDriveV2TeamDrivesUrl);
// maxResults is 10 by default.
if (max_results != 10) {
url = net::AppendOrReplaceQueryParameter(url, "maxResults",
base::NumberToString(max_results));
}
if (!page_token.empty())
url = net::AppendOrReplaceQueryParameter(url, "pageToken", page_token);
return url;
}
GURL DriveApiUrlGenerator::GetStartPageTokenUrl(
const std::string& team_drive) const {
GURL url = base_url_.Resolve(kDriveV2StartPageTokenUrl);
url = net::AppendOrReplaceQueryParameter(url, kSupportsTeamDrives, "true");
if (!team_drive.empty())
url = net::AppendOrReplaceQueryParameter(url, kTeamDriveId, team_drive);
return url;
}
} // namespace google_apis
|