|
| 1 | +<?php |
| 2 | + |
| 3 | +// Exception |
| 4 | +class SerpApiSearchException extends Exception { |
| 5 | + |
| 6 | +} |
| 7 | + |
| 8 | +/* * * |
| 9 | + * Google search |
| 10 | + */ |
| 11 | + |
| 12 | +class GoogleSearch extends SerpApiSearch { |
| 13 | + |
| 14 | + public function __construct($api_key) { |
| 15 | + parent::__construct($api_key, 'google'); |
| 16 | + } |
| 17 | + |
| 18 | +} |
| 19 | + |
| 20 | +/* * * |
| 21 | + * Bing search |
| 22 | + */ |
| 23 | + |
| 24 | +class BingSearch extends SerpApiSearch { |
| 25 | + |
| 26 | + public function __construct($api_key = NULL) { |
| 27 | + parent::__construct($api_key, 'bing'); |
| 28 | + } |
| 29 | + |
| 30 | +} |
| 31 | + |
| 32 | +/* * * |
| 33 | + * Baidu search |
| 34 | + */ |
| 35 | + |
| 36 | +class BaiduSearch extends SerpApiSearch { |
| 37 | + |
| 38 | + public function __construct($api_key = NULL) { |
| 39 | + parent::__construct($api_key, 'baidu'); |
| 40 | + } |
| 41 | + |
| 42 | + /* * * |
| 43 | + * Method is not supported. |
| 44 | + */ |
| 45 | + |
| 46 | + public function get_location($q, $limit) { |
| 47 | + throw new SerpApiSearchException("location is not currently supported by Bing"); |
| 48 | + } |
| 49 | + |
| 50 | +} |
| 51 | + |
| 52 | +/* * * |
| 53 | + * Yahoo search |
| 54 | + */ |
| 55 | + |
| 56 | +class YahooSearch extends SerpApiSearch { |
| 57 | + |
| 58 | + public function __construct($api_key = NULL) { |
| 59 | + parent::__construct($api_key, 'yahoo'); |
| 60 | + } |
| 61 | + |
| 62 | + /* * * |
| 63 | + * Method is not supported. |
| 64 | + */ |
| 65 | + |
| 66 | + public function get_location($q, $limit) { |
| 67 | + throw new SerpApiSearchException("location is not currently supported by Bing"); |
| 68 | + } |
| 69 | + |
| 70 | +} |
| 71 | + |
| 72 | +/* * * |
| 73 | + * Yandex search |
| 74 | + */ |
| 75 | + |
| 76 | +class YandexSearch extends SerpApiSearch { |
| 77 | + |
| 78 | + public function __construct($api_key = NULL) { |
| 79 | + parent::__construct($api_key, 'yandex'); |
| 80 | + } |
| 81 | + |
| 82 | + /* * * |
| 83 | + * Method is not supported. |
| 84 | + */ |
| 85 | + |
| 86 | + public function get_location($q, $limit) { |
| 87 | + throw new SerpApiSearchException("location is not currently supported by Bing"); |
| 88 | + } |
| 89 | + |
| 90 | +} |
| 91 | + |
| 92 | +/* * * |
| 93 | + * Ebay search |
| 94 | + */ |
| 95 | + |
| 96 | +class EbaySearch extends SerpApiSearch { |
| 97 | + |
| 98 | + public function __construct($api_key = NULL) { |
| 99 | + parent::__construct($api_key, 'ebay'); |
| 100 | + } |
| 101 | + |
| 102 | + /* * * |
| 103 | + * Method is not supported. |
| 104 | + */ |
| 105 | + |
| 106 | + public function get_location($q, $limit) { |
| 107 | + throw new SerpApiSearchException("location is not currently supported by Bing"); |
| 108 | + } |
| 109 | + |
| 110 | +} |
| 111 | + |
| 112 | +/* * * |
| 113 | + * YouTube search |
| 114 | + */ |
| 115 | + |
| 116 | +class YouTubeSearch extends SerpApiSearch { |
| 117 | + |
| 118 | + public function __construct($api_key = NULL) { |
| 119 | + parent::__construct($api_key, 'youTube'); |
| 120 | + } |
| 121 | + |
| 122 | + /* * * |
| 123 | + * Method is not supported. |
| 124 | + */ |
| 125 | + |
| 126 | + public function get_location($q, $limit) { |
| 127 | + throw new SerpApiSearchException("location is not currently supported by Bing"); |
| 128 | + } |
| 129 | + |
| 130 | +} |
| 131 | + |
| 132 | +/* * * |
| 133 | + * WalmartSearch search |
| 134 | + */ |
| 135 | + |
| 136 | +class WalmartSearch extends SerpApiSearch { |
| 137 | + |
| 138 | + public function __construct($api_key = NULL) { |
| 139 | + parent::__construct($api_key, 'walmart'); |
| 140 | + } |
| 141 | + |
| 142 | + /* * * |
| 143 | + * Method is not supported. |
| 144 | + */ |
| 145 | + |
| 146 | + public function get_location($q, $limit) { |
| 147 | + throw new SerpApiSearchException("location is not currently supported by Bing"); |
| 148 | + } |
| 149 | + |
| 150 | +} |
| 151 | + |
| 152 | +/* * * |
| 153 | + * Wrapper around serpapi.com |
| 154 | + */ |
| 155 | + |
| 156 | +class SerpApiSearch { |
| 157 | + |
| 158 | + public $options; |
| 159 | + public $api; |
| 160 | + public $api_key; |
| 161 | + public $engine; |
| 162 | + |
| 163 | + public function __construct($api_key = NULL, $engine = 'google') { |
| 164 | + // register engine |
| 165 | + if ($engine) { |
| 166 | + $this->engine = $engine; |
| 167 | + } else { |
| 168 | + throw new SerpApiSearchException("engine must be defined"); |
| 169 | + } |
| 170 | + |
| 171 | + // register private api key |
| 172 | + if ($api_key) { |
| 173 | + $this->api_key = $api_key; |
| 174 | + } |
| 175 | + } |
| 176 | + |
| 177 | + public function set_serp_api_key($api_key) { |
| 178 | + if ($api_key == NULL) |
| 179 | + throw new SerpApiSearchException("serp_api_key must have a value"); |
| 180 | + $this->api_key = $api_key; |
| 181 | + } |
| 182 | + |
| 183 | + /* * * |
| 184 | + * get_json |
| 185 | + * @return [Hash] search result "json like" |
| 186 | + */ |
| 187 | + |
| 188 | + public function get_json($q) { |
| 189 | + return $this->search('json', $q); |
| 190 | + } |
| 191 | + |
| 192 | + /* * * |
| 193 | + * get_html |
| 194 | + * @return [String] raw html search result |
| 195 | + */ |
| 196 | + |
| 197 | + public function get_html($q) { |
| 198 | + return $this->search('html', $q); |
| 199 | + } |
| 200 | + |
| 201 | + /* * * |
| 202 | + * Get location using Location API |
| 203 | + */ |
| 204 | + |
| 205 | + function get_location($q, $limit) { |
| 206 | + $query = [ |
| 207 | + 'q' => $q, |
| 208 | + 'limit' => $limit |
| 209 | + ]; |
| 210 | + return $this->query("/locations.json", 'json', $query); |
| 211 | + } |
| 212 | + |
| 213 | + /* * * |
| 214 | + * Retrieve search result from the Search Archive API |
| 215 | + */ |
| 216 | + |
| 217 | + function get_search_archive($search_id) { |
| 218 | + return $this->query("/searches/$search_id.json", 'json', []); |
| 219 | + } |
| 220 | + |
| 221 | + /* * * |
| 222 | + * Get account information using Account API |
| 223 | + */ |
| 224 | + |
| 225 | + function get_account() { |
| 226 | + return $this->query('/account', 'json', []); |
| 227 | + } |
| 228 | + |
| 229 | + /** |
| 230 | + * Run a search |
| 231 | + */ |
| 232 | + function search($output, $q) { |
| 233 | + return $this->query('/search', $output, $q); |
| 234 | + } |
| 235 | + |
| 236 | + function query($path, $output, $q) { |
| 237 | + $decode_format = $output == 'json' ? 'json' : 'php'; |
| 238 | + |
| 239 | + if ($this->api_key == NULL) { |
| 240 | + throw new SerpApiSearchException("serp_api_key must be defined either in the constructor or by the method set_serp_api_key"); |
| 241 | + } |
| 242 | + |
| 243 | + $api = new RestClient([ |
| 244 | + 'base_url' => "https://serpapi.com", |
| 245 | + 'user_agent' => 'google-search-results-php/1.3.0' |
| 246 | + ]); |
| 247 | + |
| 248 | + $default_q = [ |
| 249 | + 'output' => $output, |
| 250 | + 'source' => 'php', |
| 251 | + 'api_key' => $this->api_key, |
| 252 | + 'engine' => $this->engine |
| 253 | + ]; |
| 254 | + $q = array_merge($default_q, $q); |
| 255 | + $result = $api->get($path, $q); |
| 256 | + |
| 257 | + // GET https://serpapi.com/search?q=Coffee&location=Portland&format=json&source=php&engine=google&serp_api_key=demo |
| 258 | + if ($result->info->http_code == 200) { |
| 259 | + // html response |
| 260 | + if ($decode_format == 'php') { |
| 261 | + return $result->response; |
| 262 | + } |
| 263 | + // json response |
| 264 | + return $result->decode_response(); |
| 265 | + } |
| 266 | + |
| 267 | + if ($result->info->http_code == 400 && $output == 'json') { |
| 268 | + $error = $result->decode_response(); |
| 269 | + $msg = $error->error; |
| 270 | + throw new SerpApiSearchException($msg); |
| 271 | + } |
| 272 | + |
| 273 | + throw new SerpApiSearchException("Unexpected exception: $result->response"); |
| 274 | + } |
| 275 | + |
| 276 | +} |
0 commit comments