-
Notifications
You must be signed in to change notification settings - Fork 2
/
google_api.rb
41 lines (36 loc) · 1.02 KB
/
google_api.rb
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
# !/usr/bin/env ruby
require 'google/apis/customsearch_v1'
require 'json'
require "dotenv"
Dotenv.load
# Google Custom Search のクラス
class MyGoogleCustomSearcher
# コンストラクタ
def initialize()
@API_KEY = ENV['GOOGLE_API_KEY']
@CSE_ID = ENV['SEARCH_ENGINE_ID']#カスタムサーチAPI
@searcher = Google::Apis::CustomsearchV1::CustomsearchService.new
@searcher.key = @API_KEY
end
# 検索した結果のjsonをhashに変換する
# @param [String] 検索する単語
# @param [Integer] 検索件数
# @param [Boolean] ファイルに出力するかどうか
# @return [hash] 検索結果のハッシュ
def search(phrase="プリン", num=3, output=false)
query = {
num: num,
start: 1,
cr: 25,
cx: @CSE_ID
}
json = @searcher.list_cses(phrase, query).to_json
hash = JSON.parse(json)
if output
File.open("search_json/result_#{phrase}.json", 'w') do |file|
str = JSON.dump(hash, file)
end
end
return hash
end
end