summaryrefslogtreecommitdiffstats
path: root/extensions/browser/api/idle/idle_api.cc
blob: 17ae5a82e2d2c7a41458a8bf4e0a3e2f37156be0 (plain)
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
// Copyright (c) 2012 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 "extensions/browser/api/idle/idle_api.h"

#include "base/bind.h"
#include "base/callback.h"
#include "base/values.h"
#include "extensions/browser/api/idle/idle_api_constants.h"
#include "extensions/browser/api/idle/idle_manager.h"
#include "extensions/browser/api/idle/idle_manager_factory.h"

namespace extensions {

namespace {

// In seconds. Set >1 sec for security concerns.
const int kMinThreshold = 15;

// Four hours, in seconds. Not set arbitrarily high for security concerns.
const int kMaxThreshold = 4 * 60 * 60;

int ClampThreshold(int threshold) {
  if (threshold < kMinThreshold) {
    threshold = kMinThreshold;
  } else if (threshold > kMaxThreshold) {
    threshold = kMaxThreshold;
  }

  return threshold;
}

}  // namespace

ExtensionFunction::ResponseAction IdleQueryStateFunction::Run() {
  int threshold = 0;
  EXTENSION_FUNCTION_VALIDATE(args_->GetInteger(0, &threshold));
  threshold = ClampThreshold(threshold);

  IdleManagerFactory::GetForBrowserContext(context_)->QueryState(
      threshold, base::Bind(&IdleQueryStateFunction::IdleStateCallback, this));

  return RespondLater();
}

void IdleQueryStateFunction::IdleStateCallback(ui::IdleState state) {
  Respond(OneArgument(IdleManager::CreateIdleValue(state)));
}

ExtensionFunction::ResponseAction IdleSetDetectionIntervalFunction::Run() {
  int threshold = 0;
  EXTENSION_FUNCTION_VALIDATE(args_->GetInteger(0, &threshold));
  threshold = ClampThreshold(threshold);

  IdleManagerFactory::GetForBrowserContext(context_)
      ->SetThreshold(extension_id(), threshold);

  return RespondNow(NoArguments());
}

}  // namespace extensions