blob: ac1fe833f0fdcf200566064f3a410ee24d376867 (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
// 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/rtc_private/rtc_private_api.h"
#include "base/json/json_writer.h"
#include "base/message_loop/message_loop.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "base/value_conversions.h"
#include "base/values.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/chromeos/contacts/contact.pb.h"
#include "chrome/browser/extensions/event_router.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/extension_system.h"
#include "chrome/browser/extensions/state_store.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/extensions/api/rtc_private.h"
#include "content/public/browser/notification_service.h"
using base::DictionaryValue;
using base::ListValue;
using base::Value;
using contacts::Contact;
using contacts::Contact_EmailAddress;
using contacts::Contact_PhoneNumber;
namespace extensions {
namespace {
// Launch event name.
const char kOnLaunchEvent[] = "rtcPrivate.onLaunch";
// Web intent data payload mimetype.
const char kMimeTypeJson[] = "application/vnd.chromium.contact";
// Web intent data structure fields.
const char kNameIntentField[] = "name";
const char kPhoneIntentField[] = "phone";
const char kEmailIntentField[] = "email";
// Returns the ActionType of intent action.
api::rtc_private::ActionType GetLaunchAction(
RtcPrivateEventRouter::LaunchAction action) {
switch (action) {
case RtcPrivateEventRouter::LAUNCH_ACTIVATE:
return api::rtc_private::ACTION_TYPE_NONE;
case RtcPrivateEventRouter::LAUNCH_CHAT:
return api::rtc_private::ACTION_TYPE_CHAT;
case RtcPrivateEventRouter::LAUNCH_VOICE:
return api::rtc_private::ACTION_TYPE_VOICE;
case RtcPrivateEventRouter::LAUNCH_VIDEO:
return api::rtc_private::ACTION_TYPE_VIDEO;
}
return api::rtc_private::ACTION_TYPE_NONE;
}
// Creates JSON payload string for contact web intent data.
void GetContactIntentData(const Contact& contact,
DictionaryValue* dict) {
// TODO(derat): This might require more name extraction magic than this.
dict->SetString(kNameIntentField, contact.full_name());
ListValue* phone_list = new base::ListValue();
dict->Set(kPhoneIntentField, phone_list);
for (int i = 0; i < contact.phone_numbers_size(); i++) {
const Contact_PhoneNumber& phone_number = contact.phone_numbers(i);
StringValue* value = new base::StringValue(phone_number.number());
if (phone_number.primary())
CHECK(phone_list->Insert(0, value));
else
phone_list->Append(value);
}
ListValue* email_list = new base::ListValue();
dict->Set(kEmailIntentField, email_list);
for (int i = 0; i < contact.email_addresses_size(); i++) {
const Contact_EmailAddress& email_address = contact.email_addresses(i);
StringValue* value = new base::StringValue(email_address.address());
if (email_address.primary())
CHECK(email_list->Insert(0, value));
else
email_list->Append(value);
}
}
} // namespace
void RtcPrivateEventRouter::DispatchLaunchEvent(
Profile* profile, LaunchAction action, const Contact* contact) {
if (action == RtcPrivateEventRouter::LAUNCH_ACTIVATE) {
scoped_ptr<Event> event(new Event(
kOnLaunchEvent, make_scoped_ptr(new ListValue())));
event->restrict_to_profile = profile;
ExtensionSystem::Get(profile)->event_router()->BroadcastEvent(event.Pass());
} else {
DCHECK(contact);
extensions::api::rtc_private::LaunchData launch_data;
launch_data.intent.action = GetLaunchAction(action);
GetContactIntentData(*contact,
&launch_data.intent.data.additional_properties);
launch_data.intent.type = kMimeTypeJson;
scoped_ptr<Event> event(new Event(
kOnLaunchEvent, api::rtc_private::OnLaunch::Create(launch_data)));
event->restrict_to_profile = profile;
ExtensionSystem::Get(profile)->event_router()->BroadcastEvent(event.Pass());
}
}
} // namespace extensions
|