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
|
// Copyright 2014 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.
#include "chrome/browser/chromeos/file_system_provider/operations/get_metadata.h"
#include <algorithm>
#include <string>
#include "chrome/common/extensions/api/file_system_provider.h"
#include "chrome/common/extensions/api/file_system_provider_internal.h"
namespace chromeos {
namespace file_system_provider {
namespace operations {
namespace {
// Convert |value| into |output|. If parsing fails, then returns false.
bool ConvertRequestValueToFileInfo(scoped_ptr<RequestValue> value,
bool root_entry,
EntryMetadata* output) {
using extensions::api::file_system_provider::EntryMetadata;
using extensions::api::file_system_provider_internal::
GetMetadataRequestedSuccess::Params;
const Params* params = value->get_metadata_success_params();
if (!params)
return false;
if (!ValidateIDLEntryMetadata(params->metadata, root_entry))
return false;
output->name = params->metadata.name;
output->is_directory = params->metadata.is_directory;
output->size = static_cast<int64>(params->metadata.size);
std::string input_modification_time;
if (!params->metadata.modification_time.additional_properties.GetString(
"value", &input_modification_time)) {
NOTREACHED();
}
// Allow to pass invalid modification time, since there is no way to verify
// it easily on any earlier stage.
base::Time::FromString(input_modification_time.c_str(),
&output->modification_time);
if (params->metadata.mime_type.get())
output->mime_type = *params->metadata.mime_type.get();
if (params->metadata.thumbnail.get())
output->thumbnail = *params->metadata.thumbnail.get();
return true;
}
} // namespace
bool ValidateIDLEntryMetadata(
const extensions::api::file_system_provider::EntryMetadata& metadata,
bool root_entry) {
using extensions::api::file_system_provider::EntryMetadata;
if (!ValidateName(metadata.name, root_entry))
return false;
std::string input_modification_time;
if (!metadata.modification_time.additional_properties.GetString(
"value", &input_modification_time)) {
return false;
}
if (metadata.thumbnail.get()) {
// Sanity check for the thumbnail format. Note, that another, more granural
// check is done in custom bindings. Note, this is an extra check only for
// the security reasons.
const std::string expected_prefix = "data:";
std::string thumbnail_prefix =
metadata.thumbnail.get()->substr(0, expected_prefix.size());
std::transform(thumbnail_prefix.begin(),
thumbnail_prefix.end(),
thumbnail_prefix.begin(),
::tolower);
if (expected_prefix != thumbnail_prefix)
return false;
}
return true;
}
bool ValidateName(const std::string& name, bool root_entry) {
if (root_entry)
return name.empty();
return !name.empty() && name.find('/') == std::string::npos;
}
GetMetadata::GetMetadata(
extensions::EventRouter* event_router,
const ProvidedFileSystemInfo& file_system_info,
const base::FilePath& entry_path,
ProvidedFileSystemInterface::MetadataFieldMask fields,
const ProvidedFileSystemInterface::GetMetadataCallback& callback)
: Operation(event_router, file_system_info),
entry_path_(entry_path),
fields_(fields),
callback_(callback) {
}
GetMetadata::~GetMetadata() {
}
bool GetMetadata::Execute(int request_id) {
using extensions::api::file_system_provider::GetMetadataRequestedOptions;
GetMetadataRequestedOptions options;
options.file_system_id = file_system_info_.file_system_id();
options.request_id = request_id;
options.entry_path = entry_path_.AsUTF8Unsafe();
options.thumbnail =
fields_ & ProvidedFileSystemInterface::METADATA_FIELD_THUMBNAIL;
return SendEvent(
request_id,
extensions::api::file_system_provider::OnGetMetadataRequested::kEventName,
extensions::api::file_system_provider::OnGetMetadataRequested::Create(
options));
}
void GetMetadata::OnSuccess(int /* request_id */,
scoped_ptr<RequestValue> result,
bool has_more) {
scoped_ptr<EntryMetadata> metadata(new EntryMetadata);
const bool convert_result = ConvertRequestValueToFileInfo(
result.Pass(), entry_path_.AsUTF8Unsafe() == FILE_PATH_LITERAL("/"),
metadata.get());
if (!convert_result) {
LOG(ERROR) << "Failed to parse a response for the get metadata operation.";
callback_.Run(make_scoped_ptr<EntryMetadata>(NULL),
base::File::FILE_ERROR_IO);
return;
}
callback_.Run(metadata.Pass(), base::File::FILE_OK);
}
void GetMetadata::OnError(int /* request_id */,
scoped_ptr<RequestValue> /* result */,
base::File::Error error) {
callback_.Run(make_scoped_ptr<EntryMetadata>(NULL), error);
}
} // namespace operations
} // namespace file_system_provider
} // namespace chromeos
|