client.go 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. package http
  2. import (
  3. "go-common/app/interface/main/creative/model/archive"
  4. "go-common/app/interface/main/creative/model/order"
  5. "go-common/library/ecode"
  6. "go-common/library/log"
  7. bm "go-common/library/net/http/blademaster"
  8. "go-common/library/net/metadata"
  9. "strconv"
  10. "time"
  11. )
  12. func clientViewArc(c *bm.Context) {
  13. params := c.Request.Form
  14. aidStr := params.Get("aid")
  15. ip := metadata.String(c, metadata.RemoteIP)
  16. // check user
  17. midI, ok := c.Get("mid")
  18. if !ok {
  19. c.JSON(nil, ecode.CreativeNotLogin)
  20. return
  21. }
  22. mid, _ := midI.(int64)
  23. // check params
  24. aid, err := strconv.ParseInt(aidStr, 10, 64)
  25. if err != nil {
  26. log.Error("strconv.ParseInt(%s) error(%v)", aidStr, err)
  27. c.JSON(nil, ecode.RequestErr)
  28. return
  29. }
  30. av, err := arcSvc.View(c, mid, aid, ip, archive.PlatformWindows)
  31. if err != nil {
  32. c.JSON(nil, err)
  33. return
  34. }
  35. if av == nil {
  36. c.JSON(nil, ecode.NothingFound)
  37. return
  38. }
  39. av.Archive.Desc = archive.ShortDesc(av.Archive.Desc)
  40. arcElec, err := elecSvc.ArchiveState(c, aid, mid, ip)
  41. if err != nil {
  42. log.Error("archive(%d) error(%v)", mid, err)
  43. }
  44. c.JSON(map[string]interface{}{
  45. "archive": av.Archive,
  46. "videos": av.Videos,
  47. "archive_elec": arcElec,
  48. }, nil)
  49. }
  50. func clientDelArc(c *bm.Context) {
  51. params := c.Request.Form
  52. aidStr := params.Get("aid")
  53. ip := metadata.String(c, metadata.RemoteIP)
  54. // check user
  55. midI, ok := c.Get("mid")
  56. if !ok {
  57. c.JSON(nil, ecode.CreativeNotLogin)
  58. return
  59. }
  60. mid, _ := midI.(int64)
  61. // check params
  62. aid, err := strconv.ParseInt(aidStr, 10, 64)
  63. if err != nil {
  64. log.Error("strconv.ParseInt(%s) error(%v)", aidStr, err)
  65. c.JSON(nil, ecode.RequestErr)
  66. return
  67. }
  68. // del
  69. c.JSON(nil, arcSvc.Del(c, mid, aid, ip))
  70. }
  71. func clientArchives(c *bm.Context) {
  72. params := c.Request.Form
  73. class := params.Get("class")
  74. order := params.Get("order")
  75. tidStr := params.Get("tid")
  76. keyword := params.Get("keyword")
  77. pageStr := params.Get("pn")
  78. psStr := params.Get("ps")
  79. ip := metadata.String(c, metadata.RemoteIP)
  80. // check user
  81. midI, ok := c.Get("mid")
  82. if !ok {
  83. c.JSON(nil, ecode.CreativeNotLogin)
  84. return
  85. }
  86. mid, _ := midI.(int64)
  87. // check params
  88. pn, _ := strconv.Atoi(pageStr)
  89. if pn <= 0 {
  90. pn = 1
  91. }
  92. ps, _ := strconv.Atoi(psStr)
  93. if ps <= 0 || ps > 50 {
  94. ps = 10
  95. }
  96. tid, _ := strconv.ParseInt(tidStr, 10, 16)
  97. if tid <= 0 {
  98. tid = 0
  99. }
  100. arc, err := arcSvc.Archives(c, mid, int16(tid), keyword, order, class, ip, pn, ps, 0)
  101. if err != nil {
  102. c.JSON(nil, err)
  103. return
  104. }
  105. c.JSON(arc, nil)
  106. }
  107. func clientArchiveSearch(c *bm.Context) {
  108. params := c.Request.Form
  109. class := params.Get("class")
  110. order := params.Get("order")
  111. tidStr := params.Get("tid")
  112. keyword := params.Get("keyword")
  113. pageStr := params.Get("pn")
  114. psStr := params.Get("ps")
  115. ip := metadata.String(c, metadata.RemoteIP)
  116. // check user
  117. midI, ok := c.Get("mid")
  118. if !ok {
  119. c.JSON(nil, ecode.CreativeNotLogin)
  120. return
  121. }
  122. mid, _ := midI.(int64)
  123. // check params
  124. pn, _ := strconv.Atoi(pageStr)
  125. if pn <= 0 {
  126. pn = 1
  127. }
  128. ps, _ := strconv.Atoi(psStr)
  129. if ps <= 0 || ps > 50 {
  130. ps = 10
  131. }
  132. tid, _ := strconv.ParseInt(tidStr, 10, 16)
  133. if tid <= 0 {
  134. tid = 0
  135. }
  136. arc, err := arcSvc.Search(c, mid, int16(tid), keyword, order, class, ip, pn, ps, 0)
  137. if err != nil {
  138. c.JSON(nil, err)
  139. return
  140. }
  141. c.JSON(arc, nil)
  142. }
  143. func clientPre(c *bm.Context) {
  144. ip := metadata.String(c, metadata.RemoteIP)
  145. midI, ok := c.Get("mid")
  146. if !ok {
  147. c.JSON(nil, ecode.CreativeNotLogin)
  148. return
  149. }
  150. mid, _ := midI.(int64)
  151. mf, err := accSvc.MyInfo(c, mid, ip, time.Now())
  152. if err != nil {
  153. c.JSON(nil, err)
  154. return
  155. }
  156. // commercial order
  157. orders := make([]*order.Order, 0)
  158. if arcSvc.AllowOrderUps(mid) {
  159. orders, _ = arcSvc.ExecuteOrders(c, mid, metadata.String(c, metadata.RemoteIP))
  160. }
  161. mf.Commercial = arcSvc.AllowCommercial(c, mid)
  162. c.JSON(map[string]interface{}{
  163. "typelist": arcSvc.Types(c, "ch"),
  164. "activities": arcSvc.Activities(c),
  165. "myinfo": mf,
  166. "orders": orders,
  167. }, nil)
  168. }
  169. func clientTemplates(c *bm.Context) {
  170. // check user
  171. midI, ok := c.Get("mid")
  172. if !ok {
  173. c.JSON(nil, ecode.CreativeNotLogin)
  174. return
  175. }
  176. mid, _ := midI.(int64)
  177. tps, err := tplSvc.Templates(c, mid)
  178. if err != nil {
  179. c.JSON(nil, err)
  180. return
  181. }
  182. c.JSON(tps, nil)
  183. }
  184. func clientTags(c *bm.Context) {
  185. params := c.Request.Form
  186. tidStr := params.Get("typeid")
  187. title := params.Get("title")
  188. filename := params.Get("filename")
  189. desc := params.Get("desc")
  190. cover := params.Get("cover")
  191. // check user
  192. midI, ok := c.Get("mid")
  193. if !ok {
  194. c.JSON(nil, ecode.CreativeNotLogin)
  195. return
  196. }
  197. mid, _ := midI.(int64)
  198. // check params
  199. tid, _ := strconv.ParseInt(tidStr, 10, 16)
  200. if tid <= 0 {
  201. tid = 0
  202. }
  203. tags, err := dataSvc.Tags(c, mid, uint16(tid), title, filename, desc, cover, archive.TagPredictFromWindows)
  204. if err != nil {
  205. c.JSON(nil, err)
  206. return
  207. }
  208. // del
  209. c.JSON(tags, nil)
  210. }
  211. func clientAddTpl(c *bm.Context) {
  212. params := c.Request.Form
  213. typeidStr := params.Get("typeid")
  214. copyright := params.Get("arctype")
  215. name := params.Get("name")
  216. title := params.Get("title")
  217. tag := params.Get("keywords")
  218. content := params.Get("description")
  219. // check params
  220. midI, ok := c.Get("mid")
  221. if !ok {
  222. c.JSON(nil, ecode.CreativeNotLogin)
  223. return
  224. }
  225. mid, _ := midI.(int64)
  226. typeid, err := strconv.ParseInt(typeidStr, 10, 16)
  227. if err != nil || typeid < 1 {
  228. log.Error("strconv.ParseInt(%s) error(%v)", typeidStr, err)
  229. c.JSON(nil, ecode.RequestErr)
  230. return
  231. }
  232. if name == "" {
  233. log.Error("name is empty error(%v)", err)
  234. c.JSON(nil, ecode.RequestErr)
  235. return
  236. }
  237. // add
  238. err = tplSvc.AddTemplate(c, mid, int16(typeid), copyright, name, title, tag, content, time.Now())
  239. if err != nil {
  240. c.JSON(nil, err)
  241. return
  242. }
  243. c.JSON(nil, nil)
  244. }
  245. func clientUpdateTpl(c *bm.Context) {
  246. params := c.Request.Form
  247. idStr := params.Get("tid")
  248. typeidStr := params.Get("typeid")
  249. copyright := params.Get("arctype")
  250. name := params.Get("name")
  251. title := params.Get("title")
  252. tag := params.Get("keywords")
  253. content := params.Get("description")
  254. // check params
  255. midI, ok := c.Get("mid")
  256. if !ok {
  257. c.JSON(nil, ecode.CreativeNotLogin)
  258. return
  259. }
  260. mid, _ := midI.(int64)
  261. id, err := strconv.ParseInt(idStr, 10, 64)
  262. if err != nil || id < 1 {
  263. log.Error("strconv.ParseInt(%s) error(%v)", idStr, err)
  264. c.JSON(nil, ecode.RequestErr)
  265. return
  266. }
  267. typeid, err := strconv.ParseInt(typeidStr, 10, 16)
  268. if err != nil || typeid < 1 {
  269. log.Error("strconv.ParseInt(%s) error(%v)", typeidStr, err)
  270. c.JSON(nil, ecode.RequestErr)
  271. return
  272. }
  273. if name == "" {
  274. log.Error("name is empty error(%v)", err)
  275. c.JSON(nil, ecode.RequestErr)
  276. return
  277. }
  278. // update
  279. c.JSON(nil, tplSvc.UpdateTemplate(c, id, mid, int16(typeid), copyright, name, title, tag, content, time.Now()))
  280. }
  281. func clientDelTpl(c *bm.Context) {
  282. params := c.Request.Form
  283. idStr := params.Get("tid")
  284. // check params
  285. midI, ok := c.Get("mid")
  286. if !ok {
  287. c.JSON(nil, ecode.CreativeNotLogin)
  288. return
  289. }
  290. mid, _ := midI.(int64)
  291. id, err := strconv.ParseInt(idStr, 10, 64)
  292. if err != nil || id < 1 {
  293. log.Error("strconv.ParseInt(%s) error(%v)", idStr, err)
  294. c.JSON(nil, ecode.RequestErr)
  295. return
  296. }
  297. // del
  298. c.JSON(nil, tplSvc.DelTemplate(c, id, mid, time.Now()))
  299. }