blob: c520df0a85af4202a85268b45dfbe5e38c40a433 [file] [log] [blame]
// Copyright 2017 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_UI_WEBUI_POLICY_TOOL_UI_HANDLER_H_
#define CHROME_BROWSER_UI_WEBUI_POLICY_TOOL_UI_HANDLER_H_
#include "base/files/file_path.h"
#include "chrome/browser/ui/webui/policy_ui_handler.h"
class PolicyToolUIHandler : public PolicyUIHandler {
public:
PolicyToolUIHandler();
~PolicyToolUIHandler() override;
// content::WebUIMessageHandler implementation.
void RegisterMessages() override;
void OnJavascriptDisallowed() override;
private:
friend class PolicyToolUITest;
static const base::FilePath::CharType kPolicyToolSessionsDir[];
static const base::FilePath::CharType kPolicyToolDefaultSessionName[];
static const base::FilePath::CharType kPolicyToolSessionExtension[];
// Reads the current session file (based on the session_name_) and sends the
// contents to the UI.
void ImportFile();
void HandleInitializedAdmin(const base::ListValue* args);
void HandleLoadSession(const base::ListValue* args);
void HandleUpdateSession(const base::ListValue* args);
void HandleResetSession(const base::ListValue* args);
void HandleDeleteSession(const base::ListValue* args);
void OnSessionDeleted(bool is_successful);
std::string ReadOrCreateFileCallback();
void OnFileRead(const std::string& contents);
bool DoUpdateSession(const std::string& contents);
void OnSessionUpdated(bool is_successful);
bool IsValidSessionName(const base::FilePath::StringType& name) const;
base::FilePath GetSessionPath(const base::FilePath::StringType& name) const;
// Returns the current list of all sessions sorted by last access time in
// decreasing order.
base::ListValue GetSessionsList();
void OnSessionsListReceived(base::ListValue list);
void SetDefaultSessionName();
bool is_saving_enabled_ = true;
base::FilePath sessions_dir_;
base::FilePath::StringType session_name_;
base::WeakPtrFactory<PolicyToolUIHandler> callback_weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(PolicyToolUIHandler);
};
#endif // CHROME_BROWSER_UI_WEBUI_POLICY_TOOL_UI_HANDLER_H_