Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_DOODLE_DOODLE_FETCHER_H_ | |
| 6 #define COMPONENTS_DOODLE_DOODLE_FETCHER_H_ | |
| 7 | |
| 8 #include <memory> | |
| 9 #include <string> | |
| 10 #include <utility> | |
| 11 #include <vector> | |
| 12 | |
| 13 #include "base/callback.h" | |
| 14 #include "base/macros.h" | |
| 15 #include "base/memory/weak_ptr.h" | |
| 16 #include "base/optional.h" | |
| 17 #include "net/url_request/url_fetcher_delegate.h" | |
| 18 #include "url/gurl.h" | |
| 19 | |
| 20 class GoogleURLTracker; | |
| 21 | |
| 22 namespace base { | |
| 23 class Clock; | |
| 24 class DictionaryValue; | |
| 25 class Value; | |
| 26 } | |
| 27 | |
| 28 namespace net { | |
| 29 class URLRequestContextGetter; | |
| 30 } | |
| 31 | |
| 32 namespace doodle { | |
| 33 | |
| 34 enum class DoodleState { | |
| 35 AVAILABLE, | |
| 36 NO_DOODLE, | |
| 37 DOWNLOAD_ERROR, | |
| 38 PARSING_ERROR, | |
| 39 }; | |
| 40 | |
| 41 enum class DoodleType { | |
| 42 UNKNOWN, | |
| 43 SIMPLE, | |
| 44 RANDOM, | |
| 45 VIDEO, | |
| 46 INTERACTIVE, | |
| 47 INLINE_INTERACTIVE, | |
| 48 SLIDESHOW, | |
| 49 }; | |
| 50 | |
| 51 // Information about a Doodle image. If the image is invalid, the |url| will be | |
| 52 // empty and invalid. By default the dimensions are 0. | |
| 53 struct DoodleImage { | |
| 54 DoodleImage(); | |
| 55 explicit DoodleImage(GURL url); | |
| 56 ~DoodleImage(); | |
| 57 | |
| 58 GURL url; | |
| 59 int height; | |
| 60 int width; | |
| 61 bool is_animated_gif; | |
| 62 bool is_cta; | |
| 63 | |
| 64 // Copying and assignment allowed. | |
| 65 }; | |
| 66 | |
| 67 // All information about a current doodle that can be fetched from the remote | |
| 68 // end. By default, all URLs are empty and therefore invalid. | |
| 69 struct DoodleConfig { | |
| 70 DoodleConfig(); | |
| 71 DoodleConfig(const DoodleConfig& config); // = default; | |
| 72 ~DoodleConfig(); | |
| 73 | |
| 74 DoodleType doodle_type; | |
| 75 std::string alt_text; | |
| 76 std::string interactive_html; | |
| 77 std::string interactive_js; | |
|
Marc Treib
2017/02/08 10:51:36
Note that as of now, the interactive_js is just an
fhorschig
2017/02/08 18:37:25
Okay. Removing this is as easy as to add this. So
| |
| 78 | |
| 79 base::Time expiry_date; | |
| 80 GURL search_url; | |
| 81 GURL target_url; | |
| 82 GURL fullpage_interactive_url; | |
| 83 | |
| 84 DoodleImage large_image; | |
| 85 DoodleImage large_cta_image; | |
| 86 DoodleImage transparent_large_image; | |
| 87 }; | |
| 88 | |
| 89 // This class provides information about any recent doodle. | |
| 90 // It works asynchronously and calls a callback when finished fetching the | |
| 91 // information from the remote enpoint. | |
| 92 class DoodleFetcher : public net::URLFetcherDelegate { | |
| 93 public: | |
| 94 // Callback that is invoked when the fetching is done. | |
| 95 // |doodle_config| will only contain a value if |state| is AVAILABLE. | |
| 96 using FinishedCallback = base::OnceCallback<void( | |
| 97 DoodleState state, | |
| 98 const base::Optional<DoodleConfig>& doodle_config)>; | |
| 99 using ParseJSONCallback = base::Callback<void( | |
| 100 const std::string& unsafe_json, | |
| 101 const base::Callback<void(std::unique_ptr<base::Value> json)>& success, | |
| 102 const base::Callback<void(const std::string&)>& error)>; | |
| 103 | |
| 104 DoodleFetcher(net::URLRequestContextGetter* download_context, | |
| 105 GoogleURLTracker* google_url_tracker, | |
| 106 const ParseJSONCallback& json_parsing_callback); | |
| 107 DoodleFetcher(DoodleFetcher&&); | |
| 108 ~DoodleFetcher() override; | |
| 109 | |
| 110 // Fetches a doodle asynchronously. The |callback| is always called and | |
| 111 // provides a valid DoodleConfig object. | |
| 112 // If a fetch is already running, the callback will be queued and invoked with | |
| 113 // result from the next completed request. | |
| 114 void FetchDoodle(FinishedCallback callback); | |
| 115 | |
| 116 // Overrides internal clock for testing purposes. | |
| 117 void SetClockForTesting(std::unique_ptr<base::Clock> clock) { | |
| 118 clock_ = std::move(clock); | |
| 119 } | |
| 120 | |
| 121 private: | |
| 122 // net::URLFetcherDelegate implementation. | |
| 123 void OnURLFetchComplete(const net::URLFetcher* source) override; | |
| 124 | |
| 125 // ParseJSONCallback Success callback | |
| 126 void OnJsonParsed(std::unique_ptr<base::Value> json); | |
| 127 // ParseJSONCallback Failure callback | |
| 128 void OnJsonParseFailed(const std::string& error_message); | |
| 129 | |
| 130 void ParseDoodle(std::unique_ptr<base::DictionaryValue> config); | |
| 131 bool ParseImage(const base::DictionaryValue& image_dict, | |
| 132 const std::string& image_name, | |
| 133 DoodleImage* image) const; | |
| 134 void ParseBaseInformation(const base::DictionaryValue& ddljson, | |
| 135 DoodleConfig* config) const; | |
| 136 GURL ParseRelativeUrl(const base::DictionaryValue& dict_value, | |
| 137 const std::string& key) const; | |
| 138 | |
| 139 void RespondToAllCallbacks(DoodleState state, | |
| 140 const base::Optional<DoodleConfig>& config); | |
| 141 GURL GetGoogleBaseUrl() const; | |
| 142 | |
| 143 // Parameters set from constructor. | |
| 144 net::URLRequestContextGetter* const download_context_; | |
| 145 ParseJSONCallback json_parsing_callback_; | |
| 146 GoogleURLTracker* google_url_tracker_; | |
| 147 | |
| 148 // Allow for an injectable tick clock for testing. | |
| 149 std::unique_ptr<base::Clock> clock_; | |
| 150 | |
| 151 std::vector<FinishedCallback> callbacks_; | |
| 152 std::unique_ptr<net::URLFetcher> fetcher_; | |
| 153 | |
| 154 base::WeakPtrFactory<DoodleFetcher> weak_ptr_factory_; | |
| 155 | |
| 156 DISALLOW_COPY_AND_ASSIGN(DoodleFetcher); | |
| 157 }; | |
| 158 | |
| 159 } // namespace doodle | |
| 160 | |
| 161 #endif // COMPONENTS_DOODLE_DOODLE_FETCHER_H_ | |
| OLD | NEW |