grpc.go 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. package dao
  2. import (
  3. "context"
  4. archive "go-common/app/service/main/archive/api"
  5. ugcpay "go-common/app/service/main/ugcpay/api/grpc/v1"
  6. "go-common/app/interface/main/ugcpay/model"
  7. )
  8. // TradeCreate create trade order for mid
  9. func (d *Dao) TradeCreate(ctx context.Context, platform string, mid int64, oid int64, otype string, currency string) (orderID string, payData string, err error) {
  10. var (
  11. req = &ugcpay.TradeCreateReq{
  12. Platform: platform,
  13. Mid: mid,
  14. Oid: oid,
  15. Otype: otype,
  16. Currency: currency,
  17. }
  18. reply *ugcpay.TradeCreateResp
  19. )
  20. if reply, err = d.ugcpayAPI.TradeCreate(ctx, req); err != nil {
  21. return
  22. }
  23. orderID = reply.OrderId
  24. payData = reply.PayData
  25. return
  26. }
  27. // TradeQuery query trade order by orderID
  28. func (d *Dao) TradeQuery(ctx context.Context, orderID string) (order *model.TradeOrder, err error) {
  29. var (
  30. req = &ugcpay.TradeOrderReq{
  31. Id: orderID,
  32. }
  33. reply *ugcpay.TradeOrderResp
  34. )
  35. if reply, err = d.ugcpayAPI.TradeQuery(ctx, req); err != nil {
  36. return
  37. }
  38. order = &model.TradeOrder{
  39. OrderID: reply.OrderId,
  40. MID: reply.Mid,
  41. Biz: reply.Biz,
  42. Platform: reply.Platform,
  43. OID: reply.Oid,
  44. OType: reply.Otype,
  45. Fee: reply.Fee,
  46. Currency: reply.Currency,
  47. PayID: reply.PayId,
  48. State: reply.State,
  49. Reason: reply.Reason,
  50. }
  51. return
  52. }
  53. // TradeConfirm confirm trade order by orderID
  54. func (d *Dao) TradeConfirm(ctx context.Context, orderID string) (order *model.TradeOrder, err error) {
  55. var (
  56. req = &ugcpay.TradeOrderReq{
  57. Id: orderID,
  58. }
  59. reply *ugcpay.TradeOrderResp
  60. )
  61. if reply, err = d.ugcpayAPI.TradeConfirm(ctx, req); err != nil {
  62. return
  63. }
  64. order = &model.TradeOrder{
  65. OrderID: reply.OrderId,
  66. MID: reply.Mid,
  67. Biz: reply.Biz,
  68. Platform: reply.Platform,
  69. OID: reply.Oid,
  70. OType: reply.Otype,
  71. Fee: reply.Fee,
  72. Currency: reply.Currency,
  73. PayID: reply.PayId,
  74. State: reply.State,
  75. Reason: reply.Reason,
  76. }
  77. return
  78. }
  79. // TradeCancel cancel trade order by orderID
  80. func (d *Dao) TradeCancel(ctx context.Context, orderID string) (err error) {
  81. var (
  82. req = &ugcpay.TradeOrderReq{
  83. Id: orderID,
  84. }
  85. )
  86. if _, err = d.ugcpayAPI.TradeCancel(ctx, req); err != nil {
  87. return
  88. }
  89. return
  90. }
  91. // Income
  92. // IncomeAssetOverview .
  93. func (d *Dao) IncomeAssetOverview(ctx context.Context, mid int64) (inc *model.IncomeAssetOverview, err error) {
  94. var (
  95. req = &ugcpay.IncomeUserAssetOverviewReq{
  96. Mid: mid,
  97. }
  98. reply *ugcpay.IncomeUserAssetOverviewResp
  99. )
  100. if reply, err = d.ugcpayAPI.IncomeUserAssetOverview(ctx, req); err != nil {
  101. return
  102. }
  103. inc = &model.IncomeAssetOverview{
  104. Total: reply.Total,
  105. TotalBuyTimes: reply.TotalBuyTimes,
  106. MonthNew: reply.MonthNew,
  107. DayNew: reply.DayNew,
  108. }
  109. return
  110. }
  111. // IncomeUserAssetList .
  112. func (d *Dao) IncomeUserAssetList(ctx context.Context, mid int64, ver int64, ps, pn int64) (inc *model.IncomeAssetMonthly, err error) {
  113. var (
  114. req = &ugcpay.IncomeUserAssetListReq{
  115. Mid: mid,
  116. Ver: ver,
  117. Ps: ps,
  118. Pn: pn,
  119. }
  120. reply *ugcpay.IncomeUserAssetListResp
  121. )
  122. if reply, err = d.ugcpayAPI.IncomeUserAssetList(ctx, req); err != nil {
  123. return
  124. }
  125. inc = &model.IncomeAssetMonthly{
  126. List: make([]*model.IncomeAssetMonthlyByContent, 0),
  127. Page: &model.Page{
  128. Num: reply.Page.Num,
  129. Size: reply.Page.Size_,
  130. Total: reply.Page.Total,
  131. },
  132. }
  133. for _, c := range reply.List {
  134. inc.List = append(inc.List, &model.IncomeAssetMonthlyByContent{
  135. OID: c.Oid,
  136. OType: c.Otype,
  137. Currency: c.Currency,
  138. Price: c.Price,
  139. TotalBuyTimes: c.TotalBuyTimes,
  140. NewBuyTimes: c.NewBuyTimes,
  141. TotalErrTimes: c.TotalErrTimes,
  142. NewErrTimes: c.NewErrTimes,
  143. })
  144. }
  145. return
  146. }
  147. // archive
  148. // ArchiveTitles 通过 aid list 获取稿件标题
  149. func (d *Dao) ArchiveTitles(ctx context.Context, aids []int64) (arcTitles map[int64]string, err error) {
  150. var (
  151. req = &archive.ArcsRequest{
  152. Aids: aids,
  153. }
  154. reply *archive.ArcsReply
  155. )
  156. if reply, err = d.archiveAPI.Arcs(ctx, req); err != nil {
  157. return
  158. }
  159. arcTitles = make(map[int64]string)
  160. for aid, a := range reply.Arcs {
  161. arcTitles[aid] = a.Title
  162. }
  163. return
  164. }