service.proto 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. syntax="proto3";
  2. package live.webucenter.v1;
  3. option go_package ="v1";
  4. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  5. // History 相关服务
  6. service history {
  7. // 根据uid查询直播关键历史记录
  8. // `midware:"auth"`
  9. rpc get_history_by_uid (GetHistoryReq) returns (GetHistoryResp);
  10. // 删除直播历史记录
  11. // `method:"POST" midware:"auth"`
  12. rpc del_history (DelHistoryReq) returns (DelHistoryResp);
  13. }
  14. service Capsule{
  15. // `midware:"auth"`
  16. rpc get_detail(CapsuleGetDetailReq) returns (CapsuleGetDetailResp);
  17. // `method:"POST" midware:"auth"`
  18. rpc open_capsule(CapsuleOpenCapsuleReq) returns (CapsuleOpenCapsuleResp);
  19. // `midware:"guest"`
  20. rpc get_capsule_info (CapsuleGetCapsuleInfoReq) returns (CapsuleGetCapsuleInfoResp);
  21. // `method:"POST" midware:"auth"`
  22. rpc open_capsule_by_type (CapsuleOpenCapsuleByTypeReq) returns (CapsuleOpenCapsuleByTypeResp);
  23. }
  24. // 历史记录请求参数定义
  25. message GetHistoryReq {
  26. }
  27. // 获取接口返回响应
  28. message GetHistoryResp {
  29. string title = 1 [(gogoproto.jsontag) = 'title'];
  30. int32 count = 4 [(gogoproto.jsontag) = 'count'];
  31. repeated List list = 5 [(gogoproto.jsontag) = 'list'];
  32. message List {
  33. int64 roomid = 1 [(gogoproto.jsontag) = 'roomid'];
  34. int32 uid = 2 [(gogoproto.jsontag) = 'uid'];
  35. string uname =3;
  36. string user_cover = 4 [(gogoproto.jsontag) = 'user_cover'];
  37. string title = 5 [(gogoproto.jsontag) = 'title'];
  38. string face = 6 [(gogoproto.jsontag) = 'face'];
  39. string tags = 7 [(gogoproto.jsontag) = 'tags'];
  40. int32 live_status = 9 [(gogoproto.jsontag) = 'live_status'];
  41. int32 fans_num = 10 [(gogoproto.jsontag) = 'fans_num'];
  42. int32 is_attention = 12 [(gogoproto.jsontag) = 'is_attention'];
  43. int32 area_v2_id = 13;
  44. string area_v2_name = 14 [(gogoproto.jsontag) = 'area_v2_name'];
  45. string area_v2_parent_name = 15 [(gogoproto.jsontag) = 'area_v2_parent_name'];
  46. int32 area_v2_parent_id = 16;
  47. }
  48. }
  49. // 删除历史记录参数定义
  50. message DelHistoryReq {
  51. }
  52. // 删除直播历史记录响应
  53. message DelHistoryResp {
  54. }
  55. service AnchorTask {
  56. // (主播侧)-我的主播奖励(登录态)
  57. // `midware:"auth"`
  58. rpc myReward (AnchorTaskMyRewardReq) returns (AnchorTaskMyRewardResp);
  59. // (主播侧)-奖励使用记录(登录态)
  60. // `midware:"auth"`
  61. rpc useRecord (AnchorTaskUseRecordReq) returns (AnchorTaskUseRecordResp);
  62. // (主播侧)-使用奖励(登录态)
  63. // `method:"POST" midware:"auth"`
  64. rpc useReward (AnchorTaskUseRewardReq) returns (AnchorTaskUseRewardResp);
  65. // (主播侧)-奖励和任务红点(登录态)
  66. // `midware:"auth"`
  67. rpc isViewed (AnchorTaskIsViewedReq) returns (AnchorTaskIsViewedResp);
  68. // (主播侧)-添加主播奖励(内部接口)
  69. // `method:"POST" internal:"true"`
  70. rpc addReward (AnchorTaskAddRewardReq) returns (AnchorTaskAddRewardResp);
  71. }
  72. message AnchorTaskAddRewardReq {
  73. // 奖励id, 1:任意门
  74. int64 reward_id = 4 [(gogoproto.moretags) = "form:\"reward_id\" validate:\"required\""];
  75. // 房间号
  76. int64 roomid = 8 [(gogoproto.moretags) = "form:\"roomid\" validate:\"required\""];
  77. // 来源,1:主播任务,2:小时榜
  78. int64 source = 9 [(gogoproto.moretags) = "form:\"source\" validate:\"required\""];
  79. // 主播uid
  80. int64 uid = 10 [(gogoproto.moretags) = "form:\"uid\" validate:\"required\""];
  81. // 流水单号
  82. string order_id = 11 [(gogoproto.moretags) = "form:\"order_id\" validate:\"required\""];
  83. }
  84. message AnchorTaskAddRewardResp {
  85. int64 result = 1 [(gogoproto.jsontag) = 'result'];
  86. }
  87. message AnchorTaskMyRewardReq {
  88. // 页数
  89. int64 page = 1 [(gogoproto.moretags) = "form:\"page\""];
  90. }
  91. message AnchorTaskMyRewardResp {
  92. //
  93. repeated RewardObj data = 1 [(gogoproto.jsontag) = 'data'];
  94. //
  95. Page page = 2 [(gogoproto.jsontag) = 'page'];
  96. // 过期奖励数量
  97. int64 expire_count = 3 [(gogoproto.jsontag) = 'expire_count'];
  98. message RewardObj {
  99. // id
  100. int64 id = 1 [(gogoproto.jsontag) = 'id'];
  101. // 奖励类型 1:ss推荐卡 2:s推荐卡、任意门
  102. int64 reward_type = 2 [(gogoproto.jsontag) = 'reward_type'];
  103. // 1:未使用,3:已使用,5:已过期
  104. int64 status = 3 [(gogoproto.jsontag) = 'status'];
  105. // 奖励id
  106. int64 reward_id = 4 [(gogoproto.jsontag) = 'reward_id'];
  107. // 奖励名称
  108. string name = 5 [(gogoproto.jsontag) = 'name'];
  109. // 奖励图标
  110. string icon = 6 [(gogoproto.jsontag) = 'icon'];
  111. // 获得时间datetime
  112. string achieve_time = 7 [(gogoproto.jsontag) = 'achieve_time'];
  113. // 过期时间datetime
  114. string expire_time = 8 [(gogoproto.jsontag) = 'expire_time'];
  115. // 来源,1:主播任务,2:小时榜
  116. int64 source = 9 [(gogoproto.jsontag) = 'source'];
  117. // 奖励简介
  118. string reward_intro = 10 [(gogoproto.jsontag) = 'reward_intro'];
  119. }
  120. message Page {
  121. // 当前页码
  122. int64 page = 1 [(gogoproto.jsontag) = 'page'];
  123. // 每页大小
  124. int64 page_size = 2 [(gogoproto.jsontag) = 'page_size'];
  125. // 总页数
  126. int64 total_page = 3 [(gogoproto.jsontag) = 'total_page'];
  127. // 总记录数
  128. int64 total_count = 4 [(gogoproto.jsontag) = 'total_count'];
  129. }
  130. }
  131. message AnchorTaskUseRecordReq {
  132. // 页数
  133. int64 page = 1 [(gogoproto.moretags) = "form:\"page\""];
  134. }
  135. message AnchorTaskUseRecordResp {
  136. message RewardObj {
  137. // id
  138. int64 id = 1 [(gogoproto.jsontag) = 'id'];
  139. // 奖励id
  140. int64 reward_id = 2 [(gogoproto.jsontag) = 'reward_id'];
  141. // 1:未使用,3:已使用,5:已过期
  142. int64 status = 3 [(gogoproto.jsontag) = 'status'];
  143. // 奖励名称
  144. string name = 4 [(gogoproto.jsontag) = 'name'];
  145. // 奖励图标
  146. string icon = 5 [(gogoproto.jsontag) = 'icon'];
  147. // 获得时间datetime
  148. string achieve_time = 6 [(gogoproto.jsontag) = 'achieve_time'];
  149. // 过期时间datetime
  150. string expire_time = 7 [(gogoproto.jsontag) = 'expire_time'];
  151. // 来源,1:主播任务,2:小时榜
  152. int64 source = 8 [(gogoproto.jsontag) = 'source'];
  153. // 奖励简介
  154. string reward_intro = 9 [(gogoproto.jsontag) = 'reward_intro'];
  155. // 获得时间datetime
  156. string use_time = 10 [(gogoproto.jsontag) = 'use_time'];
  157. }
  158. message Page {
  159. // 当前页码
  160. int64 page = 1 [(gogoproto.jsontag) = 'page'];
  161. // 每页大小
  162. int64 page_size = 2 [(gogoproto.jsontag) = 'page_size'];
  163. // 总页数
  164. int64 total_page = 3 [(gogoproto.jsontag) = 'total_page'];
  165. // 总记录数
  166. int64 total_count = 4 [(gogoproto.jsontag) = 'total_count'];
  167. }
  168. //
  169. repeated RewardObj data = 1 [(gogoproto.jsontag) = 'data'];
  170. //
  171. Page page = 2 [(gogoproto.jsontag) = 'page'];
  172. }
  173. message AnchorTaskUseRewardReq {
  174. // 奖励列表id
  175. int64 id = 1 [(gogoproto.moretags) = "form:\"id\" validate:\"required\""];
  176. // 使用平台
  177. string platform = 2 [(gogoproto.moretags) = "form:\"platform\""];
  178. }
  179. message AnchorTaskUseRewardResp {
  180. int64 result = 1 [(gogoproto.jsontag) = 'result'];
  181. }
  182. message AnchorTaskIsViewedReq {
  183. }
  184. message AnchorTaskIsViewedResp {
  185. // 是否展示任务红点
  186. int64 task_should_notice = 1 [(gogoproto.jsontag) = 'task_should_notice'];
  187. // 是否展示奖励入口
  188. int64 show_reward_entry = 5 [(gogoproto.jsontag) = 'show_reward_entry'];
  189. // 是否展示奖励红点
  190. int64 reward_should_notice = 2 [(gogoproto.jsontag) = 'reward_should_notice'];
  191. // 任务状态, 0:没有,1:领取, 5:完成
  192. int64 task_status = 3 [(gogoproto.jsontag) = 'task_status'];
  193. // 是否在首页黑名单中
  194. int64 is_blacked = 4 [(gogoproto.jsontag) = 'is_blacked'];
  195. // 点击跳转h5链接
  196. string url = 6 [(gogoproto.jsontag) = 'url'];
  197. }
  198. message CapsuleGetDetailReq {
  199. // 来源 h5 web room
  200. string from = 2 [(gogoproto.moretags) = 'form:"from"'];
  201. }
  202. message Usage {
  203. // 用法描述
  204. string text = 1 [(gogoproto.jsontag) = "text"];
  205. // 跳转链接
  206. string url = 2 [(gogoproto.jsontag) = "url"];
  207. }
  208. message Progress {
  209. // 当前进度
  210. int64 now = 1 [(gogoproto.jsontag) = "now"];
  211. // 最大进度
  212. int64 max = 2 [(gogoproto.jsontag) = "max"];
  213. }
  214. message CapsuleGetDetailResp {
  215. // 普通扭蛋信息
  216. CapsuleInfo normal = 1 [(gogoproto.jsontag) = "normal"];
  217. // 梦幻扭蛋信息,若梦幻扭蛋status=false,则无coin、change、process、gift、list字段
  218. CapsuleInfo colorful = 2 [(gogoproto.jsontag) = "colorful"];
  219. message Gift {
  220. // 礼物名称
  221. string name = 2 [(gogoproto.jsontag) = "name"];
  222. // 礼物图片
  223. string image = 3 [(gogoproto.jsontag) = "image"];
  224. // 用法
  225. Usage usage = 4 [(gogoproto.jsontag) = "usage"];
  226. // web礼物图片
  227. string web_image = 5 [(gogoproto.jsontag) = "web_image"];
  228. // mobile礼物图片
  229. string mobile_image = 6 [(gogoproto.jsontag) = "mobile_image"];
  230. }
  231. message List {
  232. // 数量
  233. int64 num = 1 [(gogoproto.jsontag) = "num"];
  234. // 礼物名称
  235. string gift = 2 [(gogoproto.jsontag) = "gift"];
  236. // 时间
  237. string date = 3 [(gogoproto.jsontag) = "date"];
  238. // 用户名
  239. string name = 4 [(gogoproto.jsontag) = "name"];
  240. }
  241. message CapsuleInfo {
  242. //
  243. bool status = 1 [(gogoproto.jsontag) = "status"];
  244. // 扭蛋数量
  245. int64 coin = 2 [(gogoproto.jsontag) = "coin"];
  246. // 变化值
  247. int64 change = 3 [(gogoproto.jsontag) = "change"];
  248. // 进度
  249. Progress progress = 4 [(gogoproto.jsontag) = "progress"];
  250. // 规则
  251. string rule = 5 [(gogoproto.jsontag) = "rule"];
  252. // 奖品列表
  253. repeated Gift gift = 6 [(gogoproto.jsontag) = "gift"];
  254. // 历史获奖列表
  255. repeated List list = 7 [(gogoproto.jsontag) = "list"];
  256. }
  257. }
  258. message CapsuleOpenCapsuleReq {
  259. // 扭蛋类型
  260. string type = 2 [(gogoproto.moretags) = 'form:"type" validate:"required"'];
  261. // 扭的个数
  262. int64 count = 3 [(gogoproto.moretags) = 'form:"count" validate:"required"'];
  263. string platform = 4 [(gogoproto.moretags) = 'form:"platform"'];
  264. }
  265. message CapsuleOpenCapsuleResp {
  266. // 扭蛋币扣除状态
  267. bool status = 1 [(gogoproto.jsontag) = "status"];
  268. // 奖品文案
  269. repeated string text = 2 [(gogoproto.jsontag) = "text"];
  270. // 是否包含实物奖品
  271. bool isEntity = 3 [(gogoproto.jsontag) = "isEntity"];
  272. // 用户扭蛋币拥有状态
  273. Info info = 4 [(gogoproto.jsontag) = "info"];
  274. // 头衔? 恒为空字符串, 忽略之
  275. string showTitle = 5 [(gogoproto.jsontag) = "showTitle"];
  276. // 奖品列表
  277. repeated Award awards = 6 [(gogoproto.jsontag) = "awards"];
  278. message CapsuleInfo {
  279. // 拥有的币
  280. int64 coin = 1 [(gogoproto.jsontag) = "coin"];
  281. // 变化值
  282. int64 change = 2 [(gogoproto.jsontag) = "change"];
  283. // 进度
  284. Progress progress = 3 [(gogoproto.jsontag) = "progress"];
  285. }
  286. message Info {
  287. // 普通扭蛋币
  288. CapsuleInfo normal = 1 [(gogoproto.jsontag) = "normal"];
  289. // 梦幻扭蛋币
  290. CapsuleInfo colorful = 2 [(gogoproto.jsontag) = "colorful"];
  291. }
  292. message Award {
  293. // 奖品名字
  294. string name = 2 [(gogoproto.jsontag) = "name"];
  295. // 奖品数量
  296. int64 num = 3 [(gogoproto.jsontag) = "num"];
  297. // 奖品 X 数量
  298. string text = 4 [(gogoproto.jsontag) = "text"];
  299. // 奖品图片
  300. string img = 5 [(gogoproto.jsontag) = "img"];
  301. // 奖品用法说明
  302. Usage usage = 6 [(gogoproto.jsontag) = "usage"];
  303. // web礼物图片
  304. string web_image = 7 [(gogoproto.jsontag) = "web_image"];
  305. // mobile礼物图片
  306. string mobile_image = 8 [(gogoproto.jsontag) = "mobile_image"];
  307. }
  308. }
  309. message CapsuleGetCapsuleInfoReq {
  310. // 扭蛋类型
  311. string type = 2 [(gogoproto.moretags) = 'form:"type" validate:"required"'];
  312. // 来源 h5 web room
  313. string from = 3 [(gogoproto.moretags) = 'form:"from" validate:"required"'];
  314. }
  315. message CapsuleGetCapsuleInfoResp {
  316. message GiftList {
  317. // 礼物id
  318. int64 id = 1 [(gogoproto.jsontag) = "id"];
  319. // 礼物名称
  320. string name = 2 [(gogoproto.jsontag) = "name"];
  321. // 礼物数量
  322. int64 num = 3 [(gogoproto.jsontag) = "num"];
  323. // 礼物图片
  324. string web_url = 5 [(gogoproto.jsontag) = "web_url"];
  325. // 礼物图片
  326. string mobile_url = 6 [(gogoproto.jsontag) = "mobile_url"];
  327. // 用法
  328. Usage usage = 7 [(gogoproto.jsontag) = "usage"];
  329. // 奖品类型 2 头衔
  330. int64 type = 8 [(gogoproto.jsontag) = "type"];
  331. // 过期时间
  332. string expire = 9 [(gogoproto.jsontag) = "expire"];
  333. }
  334. message GiftFilter {
  335. // 礼物id
  336. int64 id = 1 [(gogoproto.jsontag) = "id"];
  337. // 礼物名称
  338. string name = 2 [(gogoproto.jsontag) = "name"];
  339. // 礼物图片
  340. string web_url = 3 [(gogoproto.jsontag) = "web_url"];
  341. // 礼物图片
  342. string mobile_url = 4 [(gogoproto.jsontag) = "mobile_url"];
  343. // 用法
  344. Usage usage = 5 [(gogoproto.jsontag) = "usage"];
  345. }
  346. // 扭蛋数量
  347. int64 coin = 1 [(gogoproto.jsontag) = "coin"];
  348. // 规则
  349. string rule = 2 [(gogoproto.jsontag) = "rule"];
  350. // 奖品列表,包含数量
  351. repeated GiftList gift_list = 3 [(gogoproto.jsontag) = "gift_list"];
  352. // 奖品列表,不包含数量,同一类别只有一条
  353. repeated GiftFilter gift_filter = 4 [(gogoproto.jsontag) = "gift_filter"];
  354. }
  355. message CapsuleOpenCapsuleByTypeReq {
  356. // 扭蛋类型
  357. string type = 2 [(gogoproto.moretags) = 'form:"type" validate:"required"'];
  358. // 扭的个数
  359. int64 count = 3 [(gogoproto.moretags) = 'form:"count" validate:"required"'];
  360. string platform = 4 [(gogoproto.moretags) = 'form:"platform"'];
  361. }
  362. message CapsuleOpenCapsuleByTypeResp {
  363. message CapsuleInfo {
  364. // 拥有的币
  365. int64 coin = 1 [(gogoproto.jsontag) = "coin"];
  366. }
  367. message Award {
  368. // 奖品id
  369. int64 id = 1 [(gogoproto.jsontag) = "id"];
  370. // 奖品名字
  371. string name = 2 [(gogoproto.jsontag) = "name"];
  372. // 奖品数量
  373. int64 num = 3 [(gogoproto.jsontag) = "num"];
  374. // 奖品 X 数量
  375. string text = 4 [(gogoproto.jsontag) = "text"];
  376. // 礼物图片
  377. string web_url = 5 [(gogoproto.jsontag) = "web_url"];
  378. // 礼物图片
  379. string mobile_url = 6 [(gogoproto.jsontag) = "mobile_url"];
  380. // 奖品用法说明
  381. Usage usage = 7 [(gogoproto.jsontag) = "usage"];
  382. // 奖品类型 2 头衔
  383. int64 type = 8 [(gogoproto.jsontag) = "type"];
  384. // 过期时间
  385. string expire = 9 [(gogoproto.jsontag) = "expire"];
  386. }
  387. // 扭蛋币扣除状态
  388. bool status = 1 [(gogoproto.jsontag) = "status"];
  389. // 是否包含实物奖品
  390. bool isEntity = 2 [(gogoproto.jsontag) = "isEntity"];
  391. // 用户扭蛋币拥有状态
  392. CapsuleInfo info = 3 [(gogoproto.jsontag) = "info"];
  393. // 奖品列表
  394. repeated Award awards = 4 [(gogoproto.jsontag) = "awards"];
  395. // 奖品列表
  396. repeated string text = 5 [(gogoproto.jsontag) = "text"];
  397. }