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
/
get_title.rb
executable file
·106 lines (94 loc) · 2.87 KB
/
get_title.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
99
100
101
102
103
104
105
106
#!/usr/bin/env ruby
require 'active_support'
require 'active_support/core_ext'
require 'graphql/client'
require 'graphql/client/http'
require 'terminal-table'
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クエリ
Query = Client.parse <<-GRAPHQL
query ($id: ID!) {
node(id: $id) {
... on Title {
id
databaseId
name
nameKana
originalMedia
airedFrom
airedTo
episodes {
edges {
node {
id
identifier
numberText
subtitle
}
}
}
}
}
}
GRAPHQL
# GraphQLクエリに与える変数
variables = {
id: ARGV[0],
}
# GraphQLクエリの実行
response = Client.query(Query, variables: variables)
# レスポンスの表示
if response.data
# クエリの実行が行われた場合は response.data に null 以外が返される
data = response.data
if data.node
# フィールドの値の取得に成功している場合の処理
# タイトル情報の出力
title = data.node
title_rows = [
['ID', title.id],
['データベースID', title.databaseId],
['名前', title.name],
['よみがな', title.nameKana],
['媒体', title.originalMedia],
['放送期間', "#{title.airedFrom}〜#{title.airedTo}"],
]
puts Terminal::Table.new(title: 'タイトル情報', rows: title_rows)
# エピソード情報の出力
episode_rows = title.episodes.edges.map do |edge|
episode = edge.node
[episode.id, episode.identifier, episode.numberText, episode.subtitle]
end
puts Terminal::Table.new(title: 'エピソード', headings: %w[ID 識別子 話数 サブタイトル], rows: episode_rows)
else
# クエリ実行中にフィールドの値の取得に失敗した場合の処理
puts "[ERROR] #{data.errors.inspect}"
exit 1
end
else
# クエリ実行前にエラーが発生した場合の処理(無効なアクセストークンなど)
puts "[ERROR] #{response.errors.inspect}"
exit 1
end