This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_log.rb
executable file
·98 lines (87 loc) · 2.53 KB
/
create_log.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
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
#!/usr/bin/env ruby
require 'active_support'
require 'active_support/core_ext'
require 'graphql/client'
require 'graphql/client/http'
GRAPHQL_ENDPOINT = 'https://api.qnyp.com/graphql'.freeze
SCHEMA_DUMP_FILE = './schema.json'.freeze
ACCESS_TOKEN = ENV['ACCESS_TOKEN']
if ACCESS_TOKEN.blank?
puts '環境変数 ACCESS_TOKEN にアクセストークンを設定してください'
exit 1
end
# HTTPアダプタの生成
HTTPAdapter = GraphQL::Client::HTTP.new(GRAPHQL_ENDPOINT) do
def headers(_context)
# Authorizationヘッダによる認証
{ 'Authorization' => "Bearer #{ACCESS_TOKEN}" }
end
end
# ローカルにGraphQL Schemaのダンプファイルが存在しない場合はサーバーから取得
unless File.exist?(SCHEMA_DUMP_FILE)
GraphQL::Client.dump_schema(HTTPAdapter, SCHEMA_DUMP_FILE)
end
# GraphQLクライアントを生成
Client = GraphQL::Client.new(
execute: HTTPAdapter,
schema: GraphQL::Client.load_schema(SCHEMA_DUMP_FILE)
)
# 視聴ログを作成するGraphQL mutation
CreateLogMutation = Client.parse <<-GRAPHQL
mutation ($input: CreateLogInput!) {
createLog(input: $input) {
log {
id
databaseId
createdAt
body
rating
user {
username
}
episode {
subtitle
}
url
}
}
}
GRAPHQL
# GraphQLクエリに与える変数
variables = {
input: {
episodeId: ARGV[0],
rating: ARGV[1],
channel: 'NONE',
spoiler: false,
},
}
variables[:input][:body] = ARGV[2] if ARGV[2].present?
# GraphQL mutationの実行
response = Client.query(CreateLogMutation, variables: variables)
# レスポンスの表示
if response.data
# mutationの実行が行われた場合は response.data に null 以外が返される
data = response.data
if data.createLog && data.createLog.log
# フィールドの値の取得に成功している場合の処理
# 視聴ログ情報の出力
log = data.createLog.log
puts "id: #{log.id}"
puts "databaeId: #{log.databaseId}"
puts "createdAt: #{log.createdAt}"
puts "body: #{log.body}"
puts "rating: #{log.rating}"
puts "user.username: #{log.user.username}"
puts "episode.subtitle: #{log.episode.subtitle}"
puts "url: #{log.url}"
else
# フィールドの値の取得に失敗した場合の処理
puts "[ERROR] #{data.errors.inspect}"
exit 1
end
else
# mutation実行前にエラーが発生した場合の処理(無効なアクセストークンなど)
puts "[ERROR] #{response.errors.inspect}"
exit 1
end