jpsclient 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/bin/jpsclient +28 -0
- data/lib/jpsclient/api/app_level.rb +138 -0
- data/lib/jpsclient/api/app_resource.rb +164 -0
- data/lib/jpsclient/api/app_resource_version.rb +52 -0
- data/lib/jpsclient/api/apple_account.rb +140 -0
- data/lib/jpsclient/api/application.rb +268 -0
- data/lib/jpsclient/api/application_category.rb +120 -0
- data/lib/jpsclient/api/application_design.rb +118 -0
- data/lib/jpsclient/api/application_income.rb +54 -0
- data/lib/jpsclient/api/application_sales.rb +52 -0
- data/lib/jpsclient/api/application_version.rb +77 -0
- data/lib/jpsclient/api/assets_category.rb +120 -0
- data/lib/jpsclient/api/bug.rb +140 -0
- data/lib/jpsclient/api/cert.rb +27 -0
- data/lib/jpsclient/api/client.rb +268 -0
- data/lib/jpsclient/api/collect.rb +52 -0
- data/lib/jpsclient/api/collection.rb +162 -0
- data/lib/jpsclient/api/commit_log.rb +104 -0
- data/lib/jpsclient/api/creative.rb +52 -0
- data/lib/jpsclient/api/custom_application.rb +230 -0
- data/lib/jpsclient/api/custom_application_web.rb +52 -0
- data/lib/jpsclient/api/document_text.rb +30 -0
- data/lib/jpsclient/api/experience.rb +143 -0
- data/lib/jpsclient/api/experience_category.rb +97 -0
- data/lib/jpsclient/api/fgui_export.rb +52 -0
- data/lib/jpsclient/api/file.rb +84 -0
- data/lib/jpsclient/api/game_assets.rb +140 -0
- data/lib/jpsclient/api/healthy.rb +30 -0
- data/lib/jpsclient/api/icon_and_snapshot.rb +54 -0
- data/lib/jpsclient/api/idea.rb +121 -0
- data/lib/jpsclient/api/jssdk.rb +30 -0
- data/lib/jpsclient/api/lark_bitable.rb +30 -0
- data/lib/jpsclient/api/lark_chat_group.rb +30 -0
- data/lib/jpsclient/api/lark_comment.rb +118 -0
- data/lib/jpsclient/api/lark_task.rb +140 -0
- data/lib/jpsclient/api/lark_task_list.rb +118 -0
- data/lib/jpsclient/api/lark_task_section.rb +74 -0
- data/lib/jpsclient/api/lark_user.rb +30 -0
- data/lib/jpsclient/api/lark_wiki_node.rb +30 -0
- data/lib/jpsclient/api/lark_wiki_space.rb +30 -0
- data/lib/jpsclient/api/lazy_client.rb +290 -0
- data/lib/jpsclient/api/login.rb +96 -0
- data/lib/jpsclient/api/m3u8.rb +30 -0
- data/lib/jpsclient/api/menu.rb +143 -0
- data/lib/jpsclient/api/modular_client.rb +228 -0
- data/lib/jpsclient/api/project.rb +46 -0
- data/lib/jpsclient/api/project_package.rb +249 -0
- data/lib/jpsclient/api/publisher.rb +165 -0
- data/lib/jpsclient/api/publisher_category.rb +142 -0
- data/lib/jpsclient/api/publisher_group.rb +118 -0
- data/lib/jpsclient/api/publisher_group_category.rb +120 -0
- data/lib/jpsclient/api/requirements.rb +143 -0
- data/lib/jpsclient/api/requirements_category.rb +97 -0
- data/lib/jpsclient/api/resource_category.rb +120 -0
- data/lib/jpsclient/api/role.rb +165 -0
- data/lib/jpsclient/api/simple_search.rb +162 -0
- data/lib/jpsclient/api/sketch.rb +74 -0
- data/lib/jpsclient/api/sketch_category.rb +97 -0
- data/lib/jpsclient/api/sov.rb +30 -0
- data/lib/jpsclient/api/statistics.rb +30 -0
- data/lib/jpsclient/api/store.rb +30 -0
- data/lib/jpsclient/api/survey.rb +143 -0
- data/lib/jpsclient/api/survey_category.rb +97 -0
- data/lib/jpsclient/api/tag.rb +142 -0
- data/lib/jpsclient/api/tool.rb +121 -0
- data/lib/jpsclient/api/tool_category.rb +120 -0
- data/lib/jpsclient/api/trending.rb +30 -0
- data/lib/jpsclient/api/ud_id.rb +118 -0
- data/lib/jpsclient/api/user.rb +99 -0
- data/lib/jpsclient/api/util.rb +30 -0
- data/lib/jpsclient/api/video_cover.rb +30 -0
- data/lib/jpsclient/api/webhook.rb +118 -0
- data/lib/jpsclient/api/workflow.rb +118 -0
- data/lib/jpsclient/auth/auth.rb +676 -0
- data/lib/jpsclient/auth/token.rb +209 -0
- data/lib/jpsclient/base/api_config.rb +225 -0
- data/lib/jpsclient/base/exception.rb +5 -0
- data/lib/jpsclient/http/http_client.rb +148 -0
- data/lib/jpsclient/upload/upload_client.rb +334 -0
- data/lib/jpsclient/upload/upload_config.rb +128 -0
- data/lib/jpsclient/upload/upload_progress.rb +73 -0
- data/lib/jpsclient/utils/aes.rb +49 -0
- data/lib/jpsclient/utils/logger.rb +38 -0
- data/lib/jpsclient/version.rb +3 -0
- data/lib/jpsclient.rb +34 -0
- metadata +269 -0
@@ -0,0 +1,30 @@
|
|
1
|
+
module JPSClient
|
2
|
+
module API
|
3
|
+
# Store 相关 API
|
4
|
+
# 自动生成的模块,处理 store 相关接口
|
5
|
+
module Store
|
6
|
+
|
7
|
+
# Create Application
|
8
|
+
#
|
9
|
+
# @param params [Hash] 请求参数
|
10
|
+
# @return [Hash] API响应
|
11
|
+
def create_application(params: {})
|
12
|
+
config = @request_config && @request_config["store_application"]
|
13
|
+
raise JPSClient::ExceptionError, "Missing config for store_application" unless config && config["url"]
|
14
|
+
|
15
|
+
path = config["url"]
|
16
|
+
|
17
|
+
response = @http_client.post(path, body: params)
|
18
|
+
result = JPSClient::Response.new(response)
|
19
|
+
|
20
|
+
if result.need_login?
|
21
|
+
do_login(force_login: true)
|
22
|
+
response = @http_client.post(path, body: params)
|
23
|
+
result = JPSClient::Response.new(response)
|
24
|
+
end
|
25
|
+
|
26
|
+
return result.to_h
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,143 @@
|
|
1
|
+
module JPSClient
|
2
|
+
module API
|
3
|
+
# Survey 相关 API
|
4
|
+
# 自动生成的模块,处理 survey 相关接口
|
5
|
+
module Survey
|
6
|
+
|
7
|
+
# Update Survey
|
8
|
+
#
|
9
|
+
# @param params [Hash] 请求参数
|
10
|
+
# @return [Hash] API响应
|
11
|
+
def update_survey(surveyId:, params: {})
|
12
|
+
config = @request_config && @request_config["survey_survey"]
|
13
|
+
raise JPSClient::ExceptionError, "Missing config for survey_survey" unless config && config["url"]
|
14
|
+
|
15
|
+
path = config["url"]
|
16
|
+
path = path.gsub("{surveyId}", surveyId.to_s)
|
17
|
+
|
18
|
+
response = @http_client.put(path, body: params)
|
19
|
+
result = JPSClient::Response.new(response)
|
20
|
+
|
21
|
+
if result.need_login?
|
22
|
+
do_login(force_login: true)
|
23
|
+
response = @http_client.put(path, body: params)
|
24
|
+
result = JPSClient::Response.new(response)
|
25
|
+
end
|
26
|
+
|
27
|
+
return result.to_h
|
28
|
+
end
|
29
|
+
|
30
|
+
# Delete Survey
|
31
|
+
#
|
32
|
+
# @param params [Hash] 请求参数
|
33
|
+
# @return [Hash] API响应
|
34
|
+
def delete_survey(surveyId:, params: {})
|
35
|
+
config = @request_config && @request_config["survey_survey"]
|
36
|
+
raise JPSClient::ExceptionError, "Missing config for survey_survey" unless config && config["url"]
|
37
|
+
|
38
|
+
path = config["url"]
|
39
|
+
path = path.gsub("{surveyId}", surveyId.to_s)
|
40
|
+
|
41
|
+
response = @http_client.delete(path)
|
42
|
+
result = JPSClient::Response.new(response)
|
43
|
+
|
44
|
+
if result.need_login?
|
45
|
+
do_login(force_login: true)
|
46
|
+
response = @http_client.delete(path)
|
47
|
+
result = JPSClient::Response.new(response)
|
48
|
+
end
|
49
|
+
|
50
|
+
return result.to_h
|
51
|
+
end
|
52
|
+
|
53
|
+
# Update Survey
|
54
|
+
#
|
55
|
+
# @param params [Hash] 请求参数
|
56
|
+
# @return [Hash] API响应
|
57
|
+
def update_survey(surveyId:, params: {})
|
58
|
+
config = @request_config && @request_config["survey_survey"]
|
59
|
+
raise JPSClient::ExceptionError, "Missing config for survey_survey" unless config && config["url"]
|
60
|
+
|
61
|
+
path = config["url"]
|
62
|
+
path = path.gsub("{surveyId}", surveyId.to_s)
|
63
|
+
|
64
|
+
response = @http_client.put(path, body: params)
|
65
|
+
result = JPSClient::Response.new(response)
|
66
|
+
|
67
|
+
if result.need_login?
|
68
|
+
do_login(force_login: true)
|
69
|
+
response = @http_client.put(path, body: params)
|
70
|
+
result = JPSClient::Response.new(response)
|
71
|
+
end
|
72
|
+
|
73
|
+
return result.to_h
|
74
|
+
end
|
75
|
+
|
76
|
+
# Get List
|
77
|
+
#
|
78
|
+
# @param params [Hash] 请求参数
|
79
|
+
# @return [Hash] API响应
|
80
|
+
def get_list(params: {})
|
81
|
+
config = @request_config && @request_config["survey_list"]
|
82
|
+
raise JPSClient::ExceptionError, "Missing config for survey_list" unless config && config["url"]
|
83
|
+
|
84
|
+
path = config["url"]
|
85
|
+
|
86
|
+
response = @http_client.post(path, body: params)
|
87
|
+
result = JPSClient::Response.new(response)
|
88
|
+
|
89
|
+
if result.need_login?
|
90
|
+
do_login(force_login: true)
|
91
|
+
response = @http_client.post(path, body: params)
|
92
|
+
result = JPSClient::Response.new(response)
|
93
|
+
end
|
94
|
+
|
95
|
+
return result.to_h
|
96
|
+
end
|
97
|
+
|
98
|
+
# Create Create
|
99
|
+
#
|
100
|
+
# @param params [Hash] 请求参数
|
101
|
+
# @return [Hash] API响应
|
102
|
+
def create_create(params: {})
|
103
|
+
config = @request_config && @request_config["survey_create"]
|
104
|
+
raise JPSClient::ExceptionError, "Missing config for survey_create" unless config && config["url"]
|
105
|
+
|
106
|
+
path = config["url"]
|
107
|
+
|
108
|
+
response = @http_client.post(path, body: params)
|
109
|
+
result = JPSClient::Response.new(response)
|
110
|
+
|
111
|
+
if result.need_login?
|
112
|
+
do_login(force_login: true)
|
113
|
+
response = @http_client.post(path, body: params)
|
114
|
+
result = JPSClient::Response.new(response)
|
115
|
+
end
|
116
|
+
|
117
|
+
return result.to_h
|
118
|
+
end
|
119
|
+
|
120
|
+
# Get Types
|
121
|
+
#
|
122
|
+
# @param params [Hash] 请求参数
|
123
|
+
# @return [Hash] API响应
|
124
|
+
def get_types(params: {})
|
125
|
+
config = @request_config && @request_config["survey_types"]
|
126
|
+
raise JPSClient::ExceptionError, "Missing config for survey_types" unless config && config["url"]
|
127
|
+
|
128
|
+
path = config["url"]
|
129
|
+
|
130
|
+
response = @http_client.get(path, params: params)
|
131
|
+
result = JPSClient::Response.new(response)
|
132
|
+
|
133
|
+
if result.need_login?
|
134
|
+
do_login(force_login: true)
|
135
|
+
response = @http_client.get(path, params: params)
|
136
|
+
result = JPSClient::Response.new(response)
|
137
|
+
end
|
138
|
+
|
139
|
+
return result.to_h
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
module JPSClient
|
2
|
+
module API
|
3
|
+
# SurveyCategory 相关 API
|
4
|
+
# 自动生成的模块,处理 survey_category 相关接口
|
5
|
+
module SurveyCategory
|
6
|
+
|
7
|
+
# Update Survey Category
|
8
|
+
#
|
9
|
+
# @param params [Hash] 请求参数
|
10
|
+
# @return [Hash] API响应
|
11
|
+
def update_survey_category(categoryId:, params: {})
|
12
|
+
config = @request_config && @request_config["survey_category_survey_category"]
|
13
|
+
raise JPSClient::ExceptionError, "Missing config for survey_category_survey_category" unless config && config["url"]
|
14
|
+
|
15
|
+
path = config["url"]
|
16
|
+
path = path.gsub("{categoryId}", categoryId.to_s)
|
17
|
+
|
18
|
+
response = @http_client.put(path, body: params)
|
19
|
+
result = JPSClient::Response.new(response)
|
20
|
+
|
21
|
+
if result.need_login?
|
22
|
+
do_login(force_login: true)
|
23
|
+
response = @http_client.put(path, body: params)
|
24
|
+
result = JPSClient::Response.new(response)
|
25
|
+
end
|
26
|
+
|
27
|
+
return result.to_h
|
28
|
+
end
|
29
|
+
|
30
|
+
# Create Survey Category
|
31
|
+
#
|
32
|
+
# @param params [Hash] 请求参数
|
33
|
+
# @return [Hash] API响应
|
34
|
+
def create_survey_category(params: {})
|
35
|
+
config = @request_config && @request_config["survey_category_survey_category"]
|
36
|
+
raise JPSClient::ExceptionError, "Missing config for survey_category_survey_category" unless config && config["url"]
|
37
|
+
|
38
|
+
path = config["url"]
|
39
|
+
|
40
|
+
response = @http_client.post(path, body: params)
|
41
|
+
result = JPSClient::Response.new(response)
|
42
|
+
|
43
|
+
if result.need_login?
|
44
|
+
do_login(force_login: true)
|
45
|
+
response = @http_client.post(path, body: params)
|
46
|
+
result = JPSClient::Response.new(response)
|
47
|
+
end
|
48
|
+
|
49
|
+
return result.to_h
|
50
|
+
end
|
51
|
+
|
52
|
+
# Create Weights
|
53
|
+
#
|
54
|
+
# @param params [Hash] 请求参数
|
55
|
+
# @return [Hash] API响应
|
56
|
+
def create_weights(params: {})
|
57
|
+
config = @request_config && @request_config["survey_category_weights"]
|
58
|
+
raise JPSClient::ExceptionError, "Missing config for survey_category_weights" unless config && config["url"]
|
59
|
+
|
60
|
+
path = config["url"]
|
61
|
+
|
62
|
+
response = @http_client.post(path, body: params)
|
63
|
+
result = JPSClient::Response.new(response)
|
64
|
+
|
65
|
+
if result.need_login?
|
66
|
+
do_login(force_login: true)
|
67
|
+
response = @http_client.post(path, body: params)
|
68
|
+
result = JPSClient::Response.new(response)
|
69
|
+
end
|
70
|
+
|
71
|
+
return result.to_h
|
72
|
+
end
|
73
|
+
|
74
|
+
# Create Survey Categories
|
75
|
+
#
|
76
|
+
# @param params [Hash] 请求参数
|
77
|
+
# @return [Hash] API响应
|
78
|
+
def create_survey_categories(params: {})
|
79
|
+
config = @request_config && @request_config["survey_category_survey_categories"]
|
80
|
+
raise JPSClient::ExceptionError, "Missing config for survey_category_survey_categories" unless config && config["url"]
|
81
|
+
|
82
|
+
path = config["url"]
|
83
|
+
|
84
|
+
response = @http_client.post(path, body: params)
|
85
|
+
result = JPSClient::Response.new(response)
|
86
|
+
|
87
|
+
if result.need_login?
|
88
|
+
do_login(force_login: true)
|
89
|
+
response = @http_client.post(path, body: params)
|
90
|
+
result = JPSClient::Response.new(response)
|
91
|
+
end
|
92
|
+
|
93
|
+
return result.to_h
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
@@ -0,0 +1,142 @@
|
|
1
|
+
module JPSClient
|
2
|
+
module API
|
3
|
+
# Tag 相关 API
|
4
|
+
# 自动生成的模块,处理 tag 相关接口
|
5
|
+
module Tag
|
6
|
+
|
7
|
+
# Update Tag
|
8
|
+
#
|
9
|
+
# @param params [Hash] 请求参数
|
10
|
+
# @return [Hash] API响应
|
11
|
+
def update_tag(params: {})
|
12
|
+
config = @request_config && @request_config["tag_tag"]
|
13
|
+
raise JPSClient::ExceptionError, "Missing config for tag_tag" unless config && config["url"]
|
14
|
+
|
15
|
+
path = config["url"]
|
16
|
+
|
17
|
+
response = @http_client.put(path, body: params)
|
18
|
+
result = JPSClient::Response.new(response)
|
19
|
+
|
20
|
+
if result.need_login?
|
21
|
+
do_login(force_login: true)
|
22
|
+
response = @http_client.put(path, body: params)
|
23
|
+
result = JPSClient::Response.new(response)
|
24
|
+
end
|
25
|
+
|
26
|
+
return result.to_h
|
27
|
+
end
|
28
|
+
|
29
|
+
# Create Tag
|
30
|
+
#
|
31
|
+
# @param params [Hash] 请求参数
|
32
|
+
# @return [Hash] API响应
|
33
|
+
def create_tag(params: {})
|
34
|
+
config = @request_config && @request_config["tag_tag"]
|
35
|
+
raise JPSClient::ExceptionError, "Missing config for tag_tag" unless config && config["url"]
|
36
|
+
|
37
|
+
path = config["url"]
|
38
|
+
|
39
|
+
response = @http_client.post(path, body: params)
|
40
|
+
result = JPSClient::Response.new(response)
|
41
|
+
|
42
|
+
if result.need_login?
|
43
|
+
do_login(force_login: true)
|
44
|
+
response = @http_client.post(path, body: params)
|
45
|
+
result = JPSClient::Response.new(response)
|
46
|
+
end
|
47
|
+
|
48
|
+
return result.to_h
|
49
|
+
end
|
50
|
+
|
51
|
+
# Create Weights
|
52
|
+
#
|
53
|
+
# @param params [Hash] 请求参数
|
54
|
+
# @return [Hash] API响应
|
55
|
+
def create_weights(params: {})
|
56
|
+
config = @request_config && @request_config["tag_weights"]
|
57
|
+
raise JPSClient::ExceptionError, "Missing config for tag_weights" unless config && config["url"]
|
58
|
+
|
59
|
+
path = config["url"]
|
60
|
+
|
61
|
+
response = @http_client.post(path, body: params)
|
62
|
+
result = JPSClient::Response.new(response)
|
63
|
+
|
64
|
+
if result.need_login?
|
65
|
+
do_login(force_login: true)
|
66
|
+
response = @http_client.post(path, body: params)
|
67
|
+
result = JPSClient::Response.new(response)
|
68
|
+
end
|
69
|
+
|
70
|
+
return result.to_h
|
71
|
+
end
|
72
|
+
|
73
|
+
# Get Tags
|
74
|
+
#
|
75
|
+
# @param params [Hash] 请求参数
|
76
|
+
# @return [Hash] API响应
|
77
|
+
def get_tags(params: {})
|
78
|
+
config = @request_config && @request_config["tag_tags"]
|
79
|
+
raise JPSClient::ExceptionError, "Missing config for tag_tags" unless config && config["url"]
|
80
|
+
|
81
|
+
path = config["url"]
|
82
|
+
|
83
|
+
response = @http_client.get(path, params: params)
|
84
|
+
result = JPSClient::Response.new(response)
|
85
|
+
|
86
|
+
if result.need_login?
|
87
|
+
do_login(force_login: true)
|
88
|
+
response = @http_client.get(path, params: params)
|
89
|
+
result = JPSClient::Response.new(response)
|
90
|
+
end
|
91
|
+
|
92
|
+
return result.to_h
|
93
|
+
end
|
94
|
+
|
95
|
+
# Get Resources Detail
|
96
|
+
#
|
97
|
+
# @param params [Hash] 请求参数
|
98
|
+
# @return [Hash] API响应
|
99
|
+
def get_resources_detail(tagId:, params: {})
|
100
|
+
config = @request_config && @request_config["tag_resources_detail"]
|
101
|
+
raise JPSClient::ExceptionError, "Missing config for tag_resources_detail" unless config && config["url"]
|
102
|
+
|
103
|
+
path = config["url"]
|
104
|
+
path = path.gsub("{tagId}", tagId.to_s)
|
105
|
+
|
106
|
+
response = @http_client.get(path, params: params)
|
107
|
+
result = JPSClient::Response.new(response)
|
108
|
+
|
109
|
+
if result.need_login?
|
110
|
+
do_login(force_login: true)
|
111
|
+
response = @http_client.get(path, params: params)
|
112
|
+
result = JPSClient::Response.new(response)
|
113
|
+
end
|
114
|
+
|
115
|
+
return result.to_h
|
116
|
+
end
|
117
|
+
|
118
|
+
# Delete Tag
|
119
|
+
#
|
120
|
+
# @param params [Hash] 请求参数
|
121
|
+
# @return [Hash] API响应
|
122
|
+
def delete_tag(tagId:, params: {})
|
123
|
+
config = @request_config && @request_config["tag_tag"]
|
124
|
+
raise JPSClient::ExceptionError, "Missing config for tag_tag" unless config && config["url"]
|
125
|
+
|
126
|
+
path = config["url"]
|
127
|
+
path = path.gsub("{tagId}", tagId.to_s)
|
128
|
+
|
129
|
+
response = @http_client.delete(path)
|
130
|
+
result = JPSClient::Response.new(response)
|
131
|
+
|
132
|
+
if result.need_login?
|
133
|
+
do_login(force_login: true)
|
134
|
+
response = @http_client.delete(path)
|
135
|
+
result = JPSClient::Response.new(response)
|
136
|
+
end
|
137
|
+
|
138
|
+
return result.to_h
|
139
|
+
end
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
@@ -0,0 +1,121 @@
|
|
1
|
+
module JPSClient
|
2
|
+
module API
|
3
|
+
# Tool 相关 API
|
4
|
+
# 自动生成的模块,处理 tool 相关接口
|
5
|
+
module Tool
|
6
|
+
|
7
|
+
# Get Tool Detail
|
8
|
+
#
|
9
|
+
# @param params [Hash] 请求参数
|
10
|
+
# @return [Hash] API响应
|
11
|
+
def get_tool_detail(toolId:, params: {})
|
12
|
+
config = @request_config && @request_config["tool_tool_detail"]
|
13
|
+
raise JPSClient::ExceptionError, "Missing config for tool_tool_detail" unless config && config["url"]
|
14
|
+
|
15
|
+
path = config["url"]
|
16
|
+
path = path.gsub("{toolId}", toolId.to_s)
|
17
|
+
|
18
|
+
response = @http_client.get(path, params: params)
|
19
|
+
result = JPSClient::Response.new(response)
|
20
|
+
|
21
|
+
if result.need_login?
|
22
|
+
do_login(force_login: true)
|
23
|
+
response = @http_client.get(path, params: params)
|
24
|
+
result = JPSClient::Response.new(response)
|
25
|
+
end
|
26
|
+
|
27
|
+
return result.to_h
|
28
|
+
end
|
29
|
+
|
30
|
+
# Update Tool
|
31
|
+
#
|
32
|
+
# @param params [Hash] 请求参数
|
33
|
+
# @return [Hash] API响应
|
34
|
+
def update_tool(toolId:, params: {})
|
35
|
+
config = @request_config && @request_config["tool_tool"]
|
36
|
+
raise JPSClient::ExceptionError, "Missing config for tool_tool" unless config && config["url"]
|
37
|
+
|
38
|
+
path = config["url"]
|
39
|
+
path = path.gsub("{toolId}", toolId.to_s)
|
40
|
+
|
41
|
+
response = @http_client.put(path, body: params)
|
42
|
+
result = JPSClient::Response.new(response)
|
43
|
+
|
44
|
+
if result.need_login?
|
45
|
+
do_login(force_login: true)
|
46
|
+
response = @http_client.put(path, body: params)
|
47
|
+
result = JPSClient::Response.new(response)
|
48
|
+
end
|
49
|
+
|
50
|
+
return result.to_h
|
51
|
+
end
|
52
|
+
|
53
|
+
# Delete Tool
|
54
|
+
#
|
55
|
+
# @param params [Hash] 请求参数
|
56
|
+
# @return [Hash] API响应
|
57
|
+
def delete_tool(toolId:, params: {})
|
58
|
+
config = @request_config && @request_config["tool_tool"]
|
59
|
+
raise JPSClient::ExceptionError, "Missing config for tool_tool" unless config && config["url"]
|
60
|
+
|
61
|
+
path = config["url"]
|
62
|
+
path = path.gsub("{toolId}", toolId.to_s)
|
63
|
+
|
64
|
+
response = @http_client.delete(path)
|
65
|
+
result = JPSClient::Response.new(response)
|
66
|
+
|
67
|
+
if result.need_login?
|
68
|
+
do_login(force_login: true)
|
69
|
+
response = @http_client.delete(path)
|
70
|
+
result = JPSClient::Response.new(response)
|
71
|
+
end
|
72
|
+
|
73
|
+
return result.to_h
|
74
|
+
end
|
75
|
+
|
76
|
+
# Create Tools
|
77
|
+
#
|
78
|
+
# @param params [Hash] 请求参数
|
79
|
+
# @return [Hash] API响应
|
80
|
+
def create_tools(params: {})
|
81
|
+
config = @request_config && @request_config["tool_tools"]
|
82
|
+
raise JPSClient::ExceptionError, "Missing config for tool_tools" unless config && config["url"]
|
83
|
+
|
84
|
+
path = config["url"]
|
85
|
+
|
86
|
+
response = @http_client.post(path, body: params)
|
87
|
+
result = JPSClient::Response.new(response)
|
88
|
+
|
89
|
+
if result.need_login?
|
90
|
+
do_login(force_login: true)
|
91
|
+
response = @http_client.post(path, body: params)
|
92
|
+
result = JPSClient::Response.new(response)
|
93
|
+
end
|
94
|
+
|
95
|
+
return result.to_h
|
96
|
+
end
|
97
|
+
|
98
|
+
# Create Tool
|
99
|
+
#
|
100
|
+
# @param params [Hash] 请求参数
|
101
|
+
# @return [Hash] API响应
|
102
|
+
def create_tool(params: {})
|
103
|
+
config = @request_config && @request_config["tool_tool"]
|
104
|
+
raise JPSClient::ExceptionError, "Missing config for tool_tool" unless config && config["url"]
|
105
|
+
|
106
|
+
path = config["url"]
|
107
|
+
|
108
|
+
response = @http_client.post(path, body: params)
|
109
|
+
result = JPSClient::Response.new(response)
|
110
|
+
|
111
|
+
if result.need_login?
|
112
|
+
do_login(force_login: true)
|
113
|
+
response = @http_client.post(path, body: params)
|
114
|
+
result = JPSClient::Response.new(response)
|
115
|
+
end
|
116
|
+
|
117
|
+
return result.to_h
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
@@ -0,0 +1,120 @@
|
|
1
|
+
module JPSClient
|
2
|
+
module API
|
3
|
+
# ToolCategory 相关 API
|
4
|
+
# 自动生成的模块,处理 tool_category 相关接口
|
5
|
+
module ToolCategory
|
6
|
+
|
7
|
+
# Update Tool Category
|
8
|
+
#
|
9
|
+
# @param params [Hash] 请求参数
|
10
|
+
# @return [Hash] API响应
|
11
|
+
def update_tool_category(categoryId:, params: {})
|
12
|
+
config = @request_config && @request_config["tool_category_tool_category"]
|
13
|
+
raise JPSClient::ExceptionError, "Missing config for tool_category_tool_category" unless config && config["url"]
|
14
|
+
|
15
|
+
path = config["url"]
|
16
|
+
path = path.gsub("{categoryId}", categoryId.to_s)
|
17
|
+
|
18
|
+
response = @http_client.put(path, body: params)
|
19
|
+
result = JPSClient::Response.new(response)
|
20
|
+
|
21
|
+
if result.need_login?
|
22
|
+
do_login(force_login: true)
|
23
|
+
response = @http_client.put(path, body: params)
|
24
|
+
result = JPSClient::Response.new(response)
|
25
|
+
end
|
26
|
+
|
27
|
+
return result.to_h
|
28
|
+
end
|
29
|
+
|
30
|
+
# Delete Tool Category
|
31
|
+
#
|
32
|
+
# @param params [Hash] 请求参数
|
33
|
+
# @return [Hash] API响应
|
34
|
+
def delete_tool_category(categoryId:, params: {})
|
35
|
+
config = @request_config && @request_config["tool_category_tool_category"]
|
36
|
+
raise JPSClient::ExceptionError, "Missing config for tool_category_tool_category" unless config && config["url"]
|
37
|
+
|
38
|
+
path = config["url"]
|
39
|
+
path = path.gsub("{categoryId}", categoryId.to_s)
|
40
|
+
|
41
|
+
response = @http_client.delete(path)
|
42
|
+
result = JPSClient::Response.new(response)
|
43
|
+
|
44
|
+
if result.need_login?
|
45
|
+
do_login(force_login: true)
|
46
|
+
response = @http_client.delete(path)
|
47
|
+
result = JPSClient::Response.new(response)
|
48
|
+
end
|
49
|
+
|
50
|
+
return result.to_h
|
51
|
+
end
|
52
|
+
|
53
|
+
# Create Tool Category
|
54
|
+
#
|
55
|
+
# @param params [Hash] 请求参数
|
56
|
+
# @return [Hash] API响应
|
57
|
+
def create_tool_category(params: {})
|
58
|
+
config = @request_config && @request_config["tool_category_tool_category"]
|
59
|
+
raise JPSClient::ExceptionError, "Missing config for tool_category_tool_category" unless config && config["url"]
|
60
|
+
|
61
|
+
path = config["url"]
|
62
|
+
|
63
|
+
response = @http_client.post(path, body: params)
|
64
|
+
result = JPSClient::Response.new(response)
|
65
|
+
|
66
|
+
if result.need_login?
|
67
|
+
do_login(force_login: true)
|
68
|
+
response = @http_client.post(path, body: params)
|
69
|
+
result = JPSClient::Response.new(response)
|
70
|
+
end
|
71
|
+
|
72
|
+
return result.to_h
|
73
|
+
end
|
74
|
+
|
75
|
+
# Create Weights
|
76
|
+
#
|
77
|
+
# @param params [Hash] 请求参数
|
78
|
+
# @return [Hash] API响应
|
79
|
+
def create_weights(params: {})
|
80
|
+
config = @request_config && @request_config["tool_category_weights"]
|
81
|
+
raise JPSClient::ExceptionError, "Missing config for tool_category_weights" unless config && config["url"]
|
82
|
+
|
83
|
+
path = config["url"]
|
84
|
+
|
85
|
+
response = @http_client.post(path, body: params)
|
86
|
+
result = JPSClient::Response.new(response)
|
87
|
+
|
88
|
+
if result.need_login?
|
89
|
+
do_login(force_login: true)
|
90
|
+
response = @http_client.post(path, body: params)
|
91
|
+
result = JPSClient::Response.new(response)
|
92
|
+
end
|
93
|
+
|
94
|
+
return result.to_h
|
95
|
+
end
|
96
|
+
|
97
|
+
# Get Tool Categories
|
98
|
+
#
|
99
|
+
# @param params [Hash] 请求参数
|
100
|
+
# @return [Hash] API响应
|
101
|
+
def get_tool_categories(params: {})
|
102
|
+
config = @request_config && @request_config["tool_category_tool_categories"]
|
103
|
+
raise JPSClient::ExceptionError, "Missing config for tool_category_tool_categories" unless config && config["url"]
|
104
|
+
|
105
|
+
path = config["url"]
|
106
|
+
|
107
|
+
response = @http_client.get(path, params: params)
|
108
|
+
result = JPSClient::Response.new(response)
|
109
|
+
|
110
|
+
if result.need_login?
|
111
|
+
do_login(force_login: true)
|
112
|
+
response = @http_client.get(path, params: params)
|
113
|
+
result = JPSClient::Response.new(response)
|
114
|
+
end
|
115
|
+
|
116
|
+
return result.to_h
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module JPSClient
|
2
|
+
module API
|
3
|
+
# Trending 相关 API
|
4
|
+
# 自动生成的模块,处理 trending 相关接口
|
5
|
+
module Trending
|
6
|
+
|
7
|
+
# Create Trendings
|
8
|
+
#
|
9
|
+
# @param params [Hash] 请求参数
|
10
|
+
# @return [Hash] API响应
|
11
|
+
def create_trendings(params: {})
|
12
|
+
config = @request_config && @request_config["trending_trendings"]
|
13
|
+
raise JPSClient::ExceptionError, "Missing config for trending_trendings" unless config && config["url"]
|
14
|
+
|
15
|
+
path = config["url"]
|
16
|
+
|
17
|
+
response = @http_client.post(path, body: params)
|
18
|
+
result = JPSClient::Response.new(response)
|
19
|
+
|
20
|
+
if result.need_login?
|
21
|
+
do_login(force_login: true)
|
22
|
+
response = @http_client.post(path, body: params)
|
23
|
+
result = JPSClient::Response.new(response)
|
24
|
+
end
|
25
|
+
|
26
|
+
return result.to_h
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|