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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
|
// Copyright 2014 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 "components/dom_distiller/core/viewer.h"
#include <string>
#include <vector>
#include "base/json/json_writer.h"
#include "base/memory/scoped_ptr.h"
#include "base/metrics/histogram.h"
#include "base/strings/string_util.h"
#include "components/dom_distiller/core/distilled_page_prefs.h"
#include "components/dom_distiller/core/dom_distiller_service.h"
#include "components/dom_distiller/core/proto/distilled_article.pb.h"
#include "components/dom_distiller/core/proto/distilled_page.pb.h"
#include "components/dom_distiller/core/task_tracker.h"
#include "components/dom_distiller/core/url_constants.h"
#include "components/dom_distiller/core/url_utils.h"
#include "grit/components_resources.h"
#include "grit/components_strings.h"
#include "net/base/escape.h"
#include "net/url_request/url_request.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
#include "url/gurl.h"
namespace dom_distiller {
namespace {
// JS Themes. Must agree with useTheme() in dom_distiller_viewer.js.
const char kDarkJsTheme[] = "dark";
const char kLightJsTheme[] = "light";
const char kSepiaJsTheme[] = "sepia";
// CSS Theme classes. Must agree with classes in distilledpage.css.
const char kDarkCssClass[] = "dark";
const char kLightCssClass[] = "light";
const char kSepiaCssClass[] = "sepia";
// JS FontFamilies. Must agree with useFontFamily() in dom_distiller_viewer.js.
const char kSerifJsFontFamily[] = "serif";
const char kSansSerifJsFontFamily[] = "sans-serif";
const char kMonospaceJsFontFamily[] = "monospace";
// CSS FontFamily classes. Must agree with classes in distilledpage.css.
const char kSerifCssClass[] = "serif";
const char kSansSerifCssClass[] = "sans-serif";
const char kMonospaceCssClass[] = "monospace";
// Maps themes to JS themes.
const std::string GetJsTheme(DistilledPagePrefs::Theme theme) {
if (theme == DistilledPagePrefs::DARK) {
return kDarkJsTheme;
} else if (theme == DistilledPagePrefs::SEPIA) {
return kSepiaJsTheme;
}
return kLightJsTheme;
}
// Maps themes to CSS classes.
const std::string GetThemeCssClass(DistilledPagePrefs::Theme theme) {
if (theme == DistilledPagePrefs::DARK) {
return kDarkCssClass;
} else if (theme == DistilledPagePrefs::SEPIA) {
return kSepiaCssClass;
}
return kLightCssClass;
}
// Maps font families to JS font families.
const std::string GetJsFontFamily(DistilledPagePrefs::FontFamily font_family) {
if (font_family == DistilledPagePrefs::SERIF) {
return kSerifJsFontFamily;
} else if (font_family == DistilledPagePrefs::MONOSPACE) {
return kMonospaceJsFontFamily;
}
return kSansSerifJsFontFamily;
}
// Maps fontFamilies to CSS fontFamily classes.
const std::string GetFontCssClass(DistilledPagePrefs::FontFamily font_family) {
if (font_family == DistilledPagePrefs::SERIF) {
return kSerifCssClass;
} else if (font_family == DistilledPagePrefs::MONOSPACE) {
return kMonospaceCssClass;
}
return kSansSerifCssClass;
}
void EnsureNonEmptyTitle(std::string* title) {
if (title->empty())
*title = l10n_util::GetStringUTF8(IDS_DOM_DISTILLER_VIEWER_NO_DATA_TITLE);
}
void EnsureNonEmptyContent(std::string* content) {
UMA_HISTOGRAM_BOOLEAN("DomDistiller.PageHasDistilledData", !content->empty());
if (content->empty()) {
*content = l10n_util::GetStringUTF8(
IDS_DOM_DISTILLER_VIEWER_NO_DATA_CONTENT);
}
}
std::string ReplaceHtmlTemplateValues(
const std::string& original_url,
const DistilledPagePrefs::Theme theme,
const DistilledPagePrefs::FontFamily font_family) {
base::StringPiece html_template =
ResourceBundle::GetSharedInstance().GetRawDataResource(
IDR_DOM_DISTILLER_VIEWER_HTML);
std::vector<std::string> substitutions;
std::ostringstream css;
std::ostringstream script;
#if defined(OS_IOS)
// On iOS the content is inlined as there is no API to detect those requests
// and return the local data once a page is loaded.
css << "<style>" << viewer::GetCss() << "</style>";
script << "<script>\n" << viewer::GetJavaScript() << "\n</script>";
#else
css << "<link rel=\"stylesheet\" href=\"/" << kViewerCssPath << "\">";
script << "<script src=\"" << kViewerJsPath << "\"></script>";
#endif // defined(OS_IOS)
substitutions.push_back(
l10n_util::GetStringUTF8(IDS_DOM_DISTILLER_VIEWER_LOADING_TITLE)); // $1
substitutions.push_back(css.str()); // $2
substitutions.push_back(GetThemeCssClass(theme) + " " +
GetFontCssClass(font_family)); // $3
substitutions.push_back(original_url); // $4
substitutions.push_back(
l10n_util::GetStringUTF8(IDS_DOM_DISTILLER_VIEWER_VIEW_ORIGINAL)); // $5
substitutions.push_back(script.str()); // $6
return ReplaceStringPlaceholders(html_template, substitutions, NULL);
}
} // namespace
namespace viewer {
const std::string GetShowFeedbackFormJs() {
base::StringValue question_val(
l10n_util::GetStringUTF8(IDS_DOM_DISTILLER_QUALITY_QUESTION));
base::StringValue no_val(
l10n_util::GetStringUTF8(IDS_DOM_DISTILLER_QUALITY_ANSWER_NO));
base::StringValue yes_val(
l10n_util::GetStringUTF8(IDS_DOM_DISTILLER_QUALITY_ANSWER_YES));
std::string question;
std::string yes;
std::string no;
base::JSONWriter::Write(question_val, &question);
base::JSONWriter::Write(yes_val, &yes);
base::JSONWriter::Write(no_val, &no);
return "showFeedbackForm(" + question + ", " + yes + ", " + no + ");";
}
const std::string GetUnsafeIncrementalDistilledPageJs(
const DistilledPageProto* page_proto,
const bool is_last_page) {
std::string output(page_proto->html());
EnsureNonEmptyContent(&output);
base::StringValue value(output);
base::JSONWriter::Write(value, &output);
std::string page_update("addToPage(");
page_update += output + ");";
return page_update + GetToggleLoadingIndicatorJs(
is_last_page);
}
const std::string GetErrorPageJs() {
base::StringValue value(l10n_util::GetStringUTF8(
IDS_DOM_DISTILLER_VIEWER_FAILED_TO_FIND_ARTICLE_CONTENT));
std::string output;
base::JSONWriter::Write(value, &output);
std::string page_update("addToPage(");
page_update += output + ");";
return page_update;
}
const std::string GetSetTitleJs(std::string title) {
EnsureNonEmptyTitle(&title);
base::StringValue value(title);
std::string output;
base::JSONWriter::Write(value, &output);
return "setTitle(" + output + ");";
}
const std::string GetSetTextDirectionJs(const std::string& direction) {
base::StringValue value(direction);
std::string output;
base::JSONWriter::Write(value, &output);
return "setTextDirection(" + output + ");";
}
const std::string GetToggleLoadingIndicatorJs(const bool is_last_page) {
if (is_last_page)
return "showLoadingIndicator(true);";
else
return "showLoadingIndicator(false);";
}
const std::string GetUnsafeArticleTemplateHtml(
const std::string original_url,
const DistilledPagePrefs::Theme theme,
const DistilledPagePrefs::FontFamily font_family) {
return ReplaceHtmlTemplateValues(original_url, theme, font_family);
}
const std::string GetUnsafeArticleContentJs(
const DistilledArticleProto* article_proto) {
DCHECK(article_proto);
std::ostringstream unsafe_output_stream;
if (article_proto->pages_size() > 0 && article_proto->pages(0).has_html()) {
for (int page_num = 0; page_num < article_proto->pages_size(); ++page_num) {
unsafe_output_stream << article_proto->pages(page_num).html();
}
}
std::string output(unsafe_output_stream.str());
EnsureNonEmptyContent(&output);
base::JSONWriter::Write(base::StringValue(output), &output);
std::string page_update("addToPage(");
page_update += output + ");";
return page_update + GetToggleLoadingIndicatorJs(true);
}
const std::string GetCss() {
return ResourceBundle::GetSharedInstance().GetRawDataResource(
IDR_DISTILLER_CSS).as_string();
}
const std::string GetJavaScript() {
return ResourceBundle::GetSharedInstance()
.GetRawDataResource(IDR_DOM_DISTILLER_VIEWER_JS)
.as_string();
}
scoped_ptr<ViewerHandle> CreateViewRequest(
DomDistillerServiceInterface* dom_distiller_service,
const std::string& path,
ViewRequestDelegate* view_request_delegate,
const gfx::Size& render_view_size) {
std::string entry_id =
url_utils::GetValueForKeyInUrlPathQuery(path, kEntryIdKey);
bool has_valid_entry_id = !entry_id.empty();
entry_id = StringToUpperASCII(entry_id);
std::string requested_url_str =
url_utils::GetValueForKeyInUrlPathQuery(path, kUrlKey);
GURL requested_url(requested_url_str);
bool has_valid_url = url_utils::IsUrlDistillable(requested_url);
if (has_valid_entry_id && has_valid_url) {
// It is invalid to specify a query param for both |kEntryIdKey| and
// |kUrlKey|.
return scoped_ptr<ViewerHandle>();
}
if (has_valid_entry_id) {
return dom_distiller_service->ViewEntry(
view_request_delegate,
dom_distiller_service->CreateDefaultDistillerPage(render_view_size),
entry_id).Pass();
} else if (has_valid_url) {
return dom_distiller_service->ViewUrl(
view_request_delegate,
dom_distiller_service->CreateDefaultDistillerPage(render_view_size),
requested_url).Pass();
}
// It is invalid to not specify a query param for |kEntryIdKey| or |kUrlKey|.
return scoped_ptr<ViewerHandle>();
}
const std::string GetDistilledPageThemeJs(DistilledPagePrefs::Theme theme) {
return "useTheme('" + GetJsTheme(theme) + "');";
}
const std::string GetDistilledPageFontFamilyJs(
DistilledPagePrefs::FontFamily font_family) {
return "useFontFamily('" + GetJsFontFamily(font_family) + "');";
}
} // namespace viewer
} // namespace dom_distiller
|