Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4482)

Unified Diff: chrome/browser/managed_mode/permission_request_creator_sync.cc

Issue 288913003: Add permission request creator class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync and move scoped_ptr include to subclass header files. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/managed_mode/permission_request_creator_sync.cc
diff --git a/chrome/browser/managed_mode/permission_request_creator_sync.cc b/chrome/browser/managed_mode/permission_request_creator_sync.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4892ecf060afde63f71c020c4a93b2b62770675f
--- /dev/null
+++ b/chrome/browser/managed_mode/permission_request_creator_sync.cc
@@ -0,0 +1,82 @@
+// 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/managed_mode/permission_request_creator_sync.h"
+
+#include "base/callback.h"
+#include "base/command_line.h"
+#include "base/values.h"
+#include "chrome/browser/managed_mode/managed_user_settings_service.h"
+#include "chrome/browser/managed_mode/managed_user_shared_settings_service.h"
+#include "chrome/common/chrome_switches.h"
+#include "google_apis/gaia/google_service_auth_error.h"
+
+using base::Time;
+
+const char kManagedUserAccessRequestKeyPrefix[] =
+ "X-ManagedUser-AccessRequests";
+const char kManagedUserAccessRequestTime[] = "timestamp";
+const char kManagedUserName[] = "name";
+
+// Key for the notification setting of the custodian. This is a shared setting
+// so we can include the setting in the access request data that is used to
+// trigger notifications.
+const char kNotificationSetting[] = "custodian-notification-setting";
+
+PermissionRequestCreatorSync::PermissionRequestCreatorSync(
+ ManagedUserSettingsService* settings_service,
+ ManagedUserSharedSettingsService* shared_settings_service,
+ const std::string& name,
+ const std::string& managed_user_id)
+ : settings_service_(settings_service),
+ shared_settings_service_(shared_settings_service),
+ name_(name),
+ managed_user_id_(managed_user_id) {
+}
+
+PermissionRequestCreatorSync::~PermissionRequestCreatorSync() {}
+
+// static
+scoped_ptr<PermissionRequestCreator>
+PermissionRequestCreatorSync::Create(
+ ManagedUserSettingsService* settings_service,
+ ManagedUserSharedSettingsService* shared_settings_service,
+ const std::string& name,
+ const std::string& managed_user_id) {
+ scoped_ptr<PermissionRequestCreator> creator(new PermissionRequestCreatorSync(
+ settings_service, shared_settings_service, name, managed_user_id));
+ return creator.Pass();
+}
+
+void PermissionRequestCreatorSync::CreatePermissionRequest(
+ const std::string& url_requested,
+ const PermissionRequestCallback& callback) {
+ // Add the prefix.
+ std::string key = ManagedUserSettingsService::MakeSplitSettingKey(
+ kManagedUserAccessRequestKeyPrefix, url_requested);
+
+ scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue);
+
+ // TODO(sergiu): Use sane time here when it's ready.
+ dict->SetDouble(kManagedUserAccessRequestTime, base::Time::Now().ToJsTime());
+
+ dict->SetString(kManagedUserName, name_);
+
+ // Copy the notification setting of the custodian.
+ const base::Value* value = shared_settings_service_->GetValue(
+ managed_user_id_, kNotificationSetting);
+ bool notifications_enabled = false;
+ if (CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kEnableAccessRequestNotifications)) {
+ notifications_enabled = true;
+ } else if (value) {
+ bool success = value->GetAsBoolean(&notifications_enabled);
+ DCHECK(success);
+ }
+ dict->SetBoolean(kNotificationSetting, notifications_enabled);
+
+ settings_service_->UploadItem(key, dict.PassAs<base::Value>());
+
+ callback.Run(GoogleServiceAuthError(GoogleServiceAuthError::NONE));
+}

Powered by Google App Engine
This is Rietveld 408576698