blob: d75fe10965e2fe67067e9ae714fcb530d27fa126 [file] [log] [blame]
// Copyright 2018 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_CHROMEOS_CHILD_ACCOUNTS_SCREEN_TIME_CONTROLLER_H_
#define CHROME_BROWSER_CHROMEOS_CHILD_ACCOUNTS_SCREEN_TIME_CONTROLLER_H_
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "chrome/browser/chromeos/child_accounts/usage_time_limit_processor.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/prefs/pref_change_registrar.h"
#include "components/session_manager/core/session_manager_observer.h"
class PrefRegistrySimple;
class PrefService;
namespace content {
class BrowserContext;
}
namespace chromeos {
// The controller to track each user's screen time usage and inquiry time limit
// processor (a component to calculate state based on policy settings and time
// usage) when necessary to determine the current lock screen state.
// Schedule notifications and lock/unlock screen based on the processor output.
class ScreenTimeController : public KeyedService,
public session_manager::SessionManagerObserver,
public system::TimezoneSettings::Observer {
public:
// Registers preferences.
static void RegisterProfilePrefs(PrefRegistrySimple* registry);
explicit ScreenTimeController(content::BrowserContext* context);
~ScreenTimeController() override;
// Returns the screen time duration. This includes time in
// kScreenTimeMinutesUsed plus time passed since |current_screen_start_time_|.
base::TimeDelta GetScreenTimeDuration() const;
// Call time limit processor for new state.
void CheckTimeLimit();
private:
// The types of time limit notifications. |SCREEN_TIME| is used when the
// the screen time limit is about to be used up, and |BED_TIME| is used when
// the bed time is approaching.
enum TimeLimitNotificationType { kScreenTime, kBedTime };
// Request to lock the screen and show the time limits message when the screen
// is locked.
void ForceScreenLockByPolicy(base::Time next_unlock_time);
// Update visibility and content of the time limits message in the lock
// screen.
// |visible|: If true, user authentication is disabled and a message is shown
// to indicate when user will be able to unlock the screen.
// If false, message is dismissed and user is able to unlock
// immediately.
// |next_unlock_time|: When user will be able to unlock the screen, only valid
// when |visible| is true.
void UpdateTimeLimitsMessage(bool visible, base::Time next_unlock_time);
// Show a notification indicating the remaining screen time.
void ShowNotification(ScreenTimeController::TimeLimitNotificationType type,
const base::TimeDelta& time_remaining);
// Reset time tracking relevant prefs and local timestamps.
void RefreshScreenLimit();
// Called when the policy of time limits changes.
void OnPolicyChanged();
// Reset any currently running timers.
void ResetTimers();
// Save the screen time progress when screen is locked, or user sign out or
// power down the device.
void SaveScreenTimeProgressBeforeExit();
// Save the screen time progress periodically in case of a crash or power
// outage.
void SaveScreenTimeProgressPeriodically();
// Save the |state| to |prefs::kScreenTimeLastState|.
void SaveCurrentStateToPref(const usage_time_limit::State& state);
// Get the last calculated |state| from |prefs::kScreenTimeLastState|, if it
// exists.
base::Optional<usage_time_limit::State> GetLastStateFromPref();
// session_manager::SessionManagerObserver:
void OnSessionStateChanged() override;
// system::TimezoneSettings::Observer:
void TimezoneChanged(const icu::TimeZone& timezone) override;
content::BrowserContext* context_;
PrefService* pref_service_;
base::OneShotTimer warning_notification_timer_;
base::OneShotTimer exit_notification_timer_;
base::OneShotTimer next_state_timer_;
base::RepeatingTimer save_screen_time_timer_;
base::OneShotTimer reset_screen_time_timer_;
// Timestamp to keep track of the screen start time for the current active
// screen. This timestamp is periodically updated by
// SaveScreenTimeProgressPeriodically(), and is cleared when user exits the
// active screen(lock, sign out, shutdown).
base::Time current_screen_start_time_;
// Timestamp to keep track of the screen start time when user starts using
// the device for the first time of the day.
// Used to calculate the screen time limit and this will be refreshed by
// RefreshScreenLimit();
base::Time first_screen_start_time_;
PrefChangeRegistrar pref_change_registrar_;
// Used to update the time limits message, if any, when screen is locked.
base::Optional<base::Time> next_unlock_time_;
DISALLOW_COPY_AND_ASSIGN(ScreenTimeController);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_CHILD_ACCOUNTS_SCREEN_TIME_CONTROLLER_H_