blob: 1c8a8c246be9b193c676c66df5443851d2317ce0 (
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
63
64
65
66
67
|
// 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 "chrome/browser/extensions/api/identity/identity_api.h"
#include "base/values.h"
#include "chrome/browser/extensions/extension_function_dispatcher.h"
#include "chrome/browser/signin/token_service.h"
#include "chrome/browser/signin/token_service_factory.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
#include "chrome/common/extensions/extension.h"
#include "googleurl/src/gurl.h"
namespace extensions {
namespace {
const char kInvalidClientId[] = "Invalid OAuth2 Client ID.";
const char kInvalidScopes[] = "Invalid OAuth2 scopes.";
} // namespace
GetAuthTokenFunction::GetAuthTokenFunction() {}
GetAuthTokenFunction::~GetAuthTokenFunction() {}
bool GetAuthTokenFunction::RunImpl() {
const Extension* extension = GetExtension();
Extension::OAuth2Info oauth2_info = extension->oauth2_info();
if (oauth2_info.client_id.empty()) {
error_ = kInvalidClientId;
return false;
}
if (oauth2_info.scopes.size() == 0) {
error_ = kInvalidScopes;
return false;
}
AddRef(); // Balanced in OnMintTokenSuccess|Failure.
TokenService* token_service = TokenServiceFactory::GetForProfile(profile());
flow_.reset(
new OAuth2MintTokenFlow(profile()->GetRequestContext(), this));
flow_->Start(token_service->GetOAuth2LoginRefreshToken(),
extension->id(), oauth2_info.client_id, oauth2_info.scopes);
return true;
}
void GetAuthTokenFunction::OnMintTokenSuccess(const std::string& access_token) {
result_.reset(Value::CreateStringValue(access_token));
SendResponse(true);
Release(); // Balanced in RunImpl.
}
void GetAuthTokenFunction::OnMintTokenFailure(
const GoogleServiceAuthError& error) {
error_ = error.ToString();
SendResponse(false);
Release(); // Balanced in RunImpl.
}
} // namespace extensions
|