Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: jingle/notifier/listener/push_notifications_send_update_task.cc

Issue 9234053: Revert 119171 - Maybe introduced a static initializer - or may be 119173 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « jingle/notifier/listener/notification_defines.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "jingle/notifier/listener/push_notifications_send_update_task.h" 5 #include "jingle/notifier/listener/push_notifications_send_update_task.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/base64.h" 9 #include "base/base64.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
(...skipping 25 matching lines...) Expand all
37 return STATE_DONE; 37 return STATE_DONE;
38 } 38 }
39 39
40 buzz::XmlElement* PushNotificationsSendUpdateTask::MakeUpdateMessage( 40 buzz::XmlElement* PushNotificationsSendUpdateTask::MakeUpdateMessage(
41 const Notification& notification, 41 const Notification& notification,
42 const buzz::Jid& to_jid_bare) { 42 const buzz::Jid& to_jid_bare) {
43 DCHECK(to_jid_bare.IsBare()); 43 DCHECK(to_jid_bare.IsBare());
44 const buzz::QName kQnPush(kPushNotificationsNamespace, "push"); 44 const buzz::QName kQnPush(kPushNotificationsNamespace, "push");
45 const buzz::QName kQnChannel(buzz::STR_EMPTY, "channel"); 45 const buzz::QName kQnChannel(buzz::STR_EMPTY, "channel");
46 const buzz::QName kQnData(kPushNotificationsNamespace, "data"); 46 const buzz::QName kQnData(kPushNotificationsNamespace, "data");
47 const buzz::QName kQnRecipient(kPushNotificationsNamespace, "recipient");
48 47
49 // Create our update stanza. The message is constructed as: 48 // Create our update stanza. The message is constructed as:
50 // <message from='{full jid}' to='{bare jid}' type='headline'> 49 // <message from='{full jid}' to='{bare jid}' type='headline'>
51 // <push xmlns='google:push' channel='{channel}'> 50 // <push xmlns='google:push' channel='{channel}'>
52 // [<recipient to='{bare jid}'>{base-64 encoded data}</data>]*
53 // <data>{base-64 encoded data}</data> 51 // <data>{base-64 encoded data}</data>
54 // </push> 52 // </push>
55 // </message> 53 // </message>
56 54
57 buzz::XmlElement* message = new buzz::XmlElement(buzz::QN_MESSAGE); 55 buzz::XmlElement* message = new buzz::XmlElement(buzz::QN_MESSAGE);
58 message->AddAttr(buzz::QN_TO, to_jid_bare.Str()); 56 message->AddAttr(buzz::QN_TO, to_jid_bare.Str());
59 message->AddAttr(buzz::QN_TYPE, "headline"); 57 message->AddAttr(buzz::QN_TYPE, "headline");
60 58
61 buzz::XmlElement* push = new buzz::XmlElement(kQnPush, true); 59 buzz::XmlElement* push = new buzz::XmlElement(kQnPush, true);
62 push->AddAttr(kQnChannel, notification.channel); 60 push->AddAttr(kQnChannel, notification.channel);
63 message->AddElement(push); 61 message->AddElement(push);
64 62
65 const RecipientList& recipients = notification.recipients;
66 for (size_t i = 0; i < recipients.size(); ++i) {
67 const Recipient& recipient = recipients[i];
68 buzz::XmlElement* recipient_element =
69 new buzz::XmlElement(kQnRecipient, true);
70 push->AddElement(recipient_element);
71 recipient_element->AddAttr(buzz::QN_TO, recipient.to);
72 if (!recipient.user_specific_data.empty()) {
73 std::string base64_data;
74 if (!base::Base64Encode(recipient.user_specific_data, &base64_data)) {
75 LOG(WARNING) << "Could not encode data "
76 << recipient.user_specific_data;
77 } else {
78 recipient_element->SetBodyText(base64_data);
79 }
80 }
81 }
82
83 buzz::XmlElement* data = new buzz::XmlElement(kQnData, true); 63 buzz::XmlElement* data = new buzz::XmlElement(kQnData, true);
84 std::string base64_data; 64 std::string base64_data;
85 if (!base::Base64Encode(notification.data, &base64_data)) { 65 if (!base::Base64Encode(notification.data, &base64_data)) {
86 LOG(WARNING) << "Could not encode data " << notification.data; 66 LOG(WARNING) << "Could not encode data " << notification.data;
87 } 67 }
88 data->SetBodyText(base64_data); 68 data->SetBodyText(base64_data);
89 push->AddElement(data); 69 push->AddElement(data);
90 70
91 return message; 71 return message;
92 } 72 }
93 73
94 } // namespace notifier 74 } // namespace notifier
OLDNEW
« no previous file with comments | « jingle/notifier/listener/notification_defines.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698