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

Side by Side Diff: components/feedback/feedback_util.cc

Issue 225183018: Move feedback files into src/components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove chrome/ from gyp files Created 6 years, 8 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/feedback/feedback_util.h" 5 #include "components/feedback/feedback_util.h"
6 6
7 #include <sstream>
8 #include <string> 7 #include <string>
9 #include <vector>
10 8
11 #include "base/bind.h" 9 #include "base/bind.h"
12 #include "base/command_line.h"
13 #include "base/file_util.h" 10 #include "base/file_util.h"
14 #include "base/file_version_info.h" 11 #include "components/feedback/feedback_data.h"
15 #include "base/memory/singleton.h" 12 #include "components/feedback/feedback_uploader.h"
16 #include "base/message_loop/message_loop.h" 13 #include "components/feedback/feedback_uploader_factory.h"
17 #include "base/strings/string_number_conversions.h" 14 #include "components/feedback/proto/common.pb.h"
18 #include "base/strings/stringprintf.h" 15 #include "components/feedback/proto/dom.pb.h"
19 #include "base/strings/utf_string_conversions.h" 16 #include "components/feedback/proto/extension.pb.h"
20 #include "base/win/windows_version.h" 17 #include "components/feedback/proto/math.pb.h"
21 #include "chrome/browser/browser_process.h"
22 #include "chrome/browser/extensions/api/feedback_private/feedback_private_api.h"
23 #include "chrome/browser/feedback/feedback_data.h"
24 #include "chrome/browser/feedback/feedback_uploader.h"
25 #include "chrome/browser/feedback/feedback_uploader_factory.h"
26 #include "chrome/browser/metrics/variations/variations_http_header_provider.h"
27 #include "chrome/browser/profiles/profile.h"
28 #include "chrome/browser/profiles/profile_manager.h"
29 #include "chrome/browser/safe_browsing/safe_browsing_util.h"
30 #include "chrome/browser/ui/browser_finder.h"
31 #include "chrome/browser/ui/browser_list.h"
32 #include "chrome/browser/ui/browser_window.h"
33 #include "chrome/browser/ui/tabs/tab_strip_model.h"
34 #include "chrome/common/chrome_content_client.h"
35 #include "chrome/common/chrome_switches.h"
36 #include "chrome/common/chrome_version_info.h"
37 #include "chrome/common/metrics/metrics_log_manager.h"
38 #include "content/public/browser/navigation_controller.h"
39 #include "content/public/browser/web_contents.h"
40 #include "grit/generated_resources.h"
41 #include "grit/locale_settings.h"
42 #include "grit/theme_resources.h"
43 #include "net/base/load_flags.h"
44 #include "net/http/http_request_headers.h"
45 #include "net/url_request/url_fetcher.h"
46 #include "net/url_request/url_fetcher_delegate.h"
47 #include "net/url_request/url_request_status.h"
48 #include "third_party/icu/source/common/unicode/locid.h"
49 #include "third_party/zlib/google/zip.h" 18 #include "third_party/zlib/google/zip.h"
50 #include "ui/base/l10n/l10n_util.h"
51 #include "url/gurl.h"
52 19
53 namespace { 20 namespace {
54 21
55 GURL GetTargetTabUrl(int session_id, int index) {
56 Browser* browser = chrome::FindBrowserWithID(session_id);
57 // Sanity checks.
58 if (!browser || index >= browser->tab_strip_model()->count())
59 return GURL();
60
61 if (index >= 0) {
62 content::WebContents* target_tab =
63 browser->tab_strip_model()->GetWebContentsAt(index);
64 if (target_tab)
65 return target_tab->GetURL();
66 }
67
68 return GURL();
69 }
70
71 const char kPngMimeType[] = "image/png"; 22 const char kPngMimeType[] = "image/png";
72 const char kArbitraryMimeType[] = "application/octet-stream"; 23 const char kArbitraryMimeType[] = "application/octet-stream";
73 const char kHistogramsAttachmentName[] = "histograms.zip"; 24 const char kHistogramsAttachmentName[] = "histograms.zip";
74 const char kLogsAttachmentName[] = "system_logs.zip"; 25 const char kLogsAttachmentName[] = "system_logs.zip";
75 26
76 #if defined(OS_CHROMEOS) 27 #if defined(OS_CHROMEOS)
77 const int kChromeOSProductId = 208; 28 const int kChromeOSProductId = 208;
78 #else 29 #else
79 const int kChromeBrowserProductId = 237; 30 const int kChromeBrowserProductId = 237;
80 #endif 31 #endif
(...skipping 19 matching lines...) Expand all
100 51
101 userfeedback::ProductSpecificBinaryData* attachment = 52 userfeedback::ProductSpecificBinaryData* attachment =
102 feedback_data->add_product_specific_binary_data(); 53 feedback_data->add_product_specific_binary_data();
103 attachment->set_mime_type(kArbitraryMimeType); 54 attachment->set_mime_type(kArbitraryMimeType);
104 attachment->set_name(name); 55 attachment->set_name(name);
105 attachment->set_data(*data); 56 attachment->set_data(*data);
106 } 57 }
107 58
108 } // namespace 59 } // namespace
109 60
110 namespace chrome {
111
112 const char kAppLauncherCategoryTag[] = "AppLauncher";
113
114 void ShowFeedbackPage(Browser* browser,
115 const std::string& description_template,
116 const std::string& category_tag) {
117 GURL page_url;
118 if (browser) {
119 page_url = GetTargetTabUrl(browser->session_id().id(),
120 browser->tab_strip_model()->active_index());
121 }
122
123 Profile* profile = NULL;
124 if (browser) {
125 profile = browser->profile();
126 } else {
127 profile = ProfileManager::GetLastUsedProfileAllowedByPolicy();
128 }
129 if (!profile) {
130 LOG(ERROR) << "Cannot invoke feedback: No profile found!";
131 return;
132 }
133
134 // We do not want to launch on an OTR profile.
135 profile = profile->GetOriginalProfile();
136 DCHECK(profile);
137
138 extensions::FeedbackPrivateAPI* api =
139 extensions::FeedbackPrivateAPI::GetFactoryInstance()->Get(profile);
140
141 api->RequestFeedback(description_template,
142 category_tag,
143 page_url);
144 }
145
146 } // namespace chrome
147
148 namespace feedback_util { 61 namespace feedback_util {
149 62
150 void SendReport(scoped_refptr<FeedbackData> data) { 63 void SendReport(scoped_refptr<FeedbackData> data) {
151 if (!data.get()) { 64 if (!data.get()) {
152 LOG(ERROR) << "SendReport called with NULL data!"; 65 LOG(ERROR) << "SendReport called with NULL data!";
153 NOTREACHED(); 66 NOTREACHED();
154 return; 67 return;
155 } 68 }
156 69
157 userfeedback::ExtensionSubmit feedback_data; 70 userfeedback::ExtensionSubmit feedback_data;
158 // Unused field, needs to be 0 though. 71 // Unused field, needs to be 0 though.
159 feedback_data.set_type_id(0); 72 feedback_data.set_type_id(0);
160 73
161 userfeedback::CommonData* common_data = feedback_data.mutable_common_data(); 74 userfeedback::CommonData* common_data = feedback_data.mutable_common_data();
162 // We're not using gaia ids, we're using the e-mail field instead. 75 // We're not using gaia ids, we're using the e-mail field instead.
163 common_data->set_gaia_id(0); 76 common_data->set_gaia_id(0);
164 common_data->set_user_email(data->user_email()); 77 common_data->set_user_email(data->user_email());
165 common_data->set_description(data->description()); 78 common_data->set_description(data->description());
166 79 common_data->set_source_description_language(data->locale());
167 std::string chrome_locale = g_browser_process->GetApplicationLocale();
168 common_data->set_source_description_language(chrome_locale);
169 80
170 userfeedback::WebData* web_data = feedback_data.mutable_web_data(); 81 userfeedback::WebData* web_data = feedback_data.mutable_web_data();
171 web_data->set_url(data->page_url()); 82 web_data->set_url(data->page_url());
172 web_data->mutable_navigator()->set_user_agent(GetUserAgent()); 83 web_data->mutable_navigator()->set_user_agent(data->user_agent());
173 84
174 gfx::Rect screen_size;
175 if (data->sys_info()) { 85 if (data->sys_info()) {
176 for (FeedbackData::SystemLogsMap::const_iterator i = 86 for (FeedbackData::SystemLogsMap::const_iterator i =
177 data->sys_info()->begin(); i != data->sys_info()->end(); ++i) { 87 data->sys_info()->begin(); i != data->sys_info()->end(); ++i) {
178 if (FeedbackData::BelowCompressionThreshold(i->second)) 88 if (FeedbackData::BelowCompressionThreshold(i->second))
179 AddFeedbackData(&feedback_data, i->first, i->second); 89 AddFeedbackData(&feedback_data, i->first, i->second);
180 } 90 }
181 91
182 AddAttachment(&feedback_data, kLogsAttachmentName, data->compressed_logs()); 92 AddAttachment(&feedback_data, kLogsAttachmentName, data->compressed_logs());
183 } 93 }
184 94
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 #endif 148 #endif
239 149
240 *(feedback_data.mutable_chrome_data()) = chrome_data; 150 *(feedback_data.mutable_chrome_data()) = chrome_data;
241 151
242 // This pointer will eventually get deleted by the PostCleanup class, after 152 // This pointer will eventually get deleted by the PostCleanup class, after
243 // we've either managed to successfully upload the report or died trying. 153 // we've either managed to successfully upload the report or died trying.
244 std::string post_body; 154 std::string post_body;
245 feedback_data.SerializeToString(&post_body); 155 feedback_data.SerializeToString(&post_body);
246 156
247 feedback::FeedbackUploader *uploader = 157 feedback::FeedbackUploader *uploader =
248 feedback::FeedbackUploaderFactory::GetForBrowserContext(data->profile()); 158 feedback::FeedbackUploaderFactory::GetForBrowserContext(data->context());
249 uploader->QueueReport(post_body); 159 uploader->QueueReport(post_body);
250 } 160 }
251 161
252 bool ZipString(const base::FilePath& filename, 162 bool ZipString(const base::FilePath& filename,
253 const std::string& data, std::string* compressed_logs) { 163 const std::string& data, std::string* compressed_logs) {
254 base::FilePath temp_path; 164 base::FilePath temp_path;
255 base::FilePath zip_file; 165 base::FilePath zip_file;
256 166
257 // Create a temporary directory, put the logs into a file in it. Create 167 // Create a temporary directory, put the logs into a file in it. Create
258 // another temporary file to receive the zip file in. 168 // another temporary file to receive the zip file in.
259 if (!base::CreateNewTempDirectory(base::FilePath::StringType(), &temp_path)) 169 if (!base::CreateNewTempDirectory(base::FilePath::StringType(), &temp_path))
260 return false; 170 return false;
261 if (base::WriteFile(temp_path.Append(filename), data.c_str(), data.size()) == 171 if (base::WriteFile(temp_path.Append(filename), data.c_str(), data.size()) ==
262 -1) 172 -1)
263 return false; 173 return false;
264 174
265 bool succeed = base::CreateTemporaryFile(&zip_file) && 175 bool succeed = base::CreateTemporaryFile(&zip_file) &&
266 zip::Zip(temp_path, zip_file, false) && 176 zip::Zip(temp_path, zip_file, false) &&
267 base::ReadFileToString(zip_file, compressed_logs); 177 base::ReadFileToString(zip_file, compressed_logs);
268 178
269 base::DeleteFile(temp_path, true); 179 base::DeleteFile(temp_path, true);
270 base::DeleteFile(zip_file, false); 180 base::DeleteFile(zip_file, false);
271 181
272 return succeed; 182 return succeed;
273 } 183 }
274 184
275 } // namespace feedback_util 185 } // namespace feedback_util
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698