flow.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. package archive
  2. import (
  3. "context"
  4. "fmt"
  5. "time"
  6. "go-common/app/service/main/videoup/model/archive"
  7. "go-common/library/database/sql"
  8. "go-common/library/log"
  9. "go-common/library/xstr"
  10. "github.com/pkg/errors"
  11. )
  12. const (
  13. _upStateFlowSQL = "UPDATE flow_design SET state =? where id=?"
  14. _inFlowSQL = "INSERT into flow_design(pool,oid,group_id,uid,remark) VALUES (?,?,?,?,?)"
  15. _inFlowLogSQL = "INSERT into flow_design_log(pool,oid,group_id,uid,action,remark) VALUES (?,?,?,?,1,?)"
  16. _flowsSQL = "SELECT id,rank,type,value,name,ctime FROM flow_group WHERE state=0 order by rank desc"
  17. _whiteMidSQL = "SELECT oid,uid FROM flow_design WHERE pool=1 AND state=0 AND group_id=11"
  18. _isFlowGroupIDInSQL = "SELECT id FROM flow_design WHERE pool=? AND state=0 AND group_id=? AND oid=? limit 1"
  19. //稿件 mid 配置
  20. _midsForbidSQL = "SELECT flow_design.id,oid,value FROM flow_design left join flow_group on flow_design.group_id=flow_group.id WHERE flow_design.pool=1 AND flow_design.state=0 AND flow_design.parent=0 AND flow_design.group_id>=12 and flow_group.type=4 "
  21. _isActGroupIDSQL = "SELECT state FROM flow_group WHERE id=?"
  22. _isMidIDSQL = "SELECT id,pool,oid,group_id,parent,uid,remark,ctime,mtime FROM flow_design WHERE pool=1 AND state=0 AND oid=? AND parent=?"
  23. _findGroupIDByScopeSQL = "SELECT group_id FROM flow_scope WHERE pool= ? AND industry_id=? AND brand_id=? AND official=? AND state=0 order by id desc limit 1;"
  24. _appFlowsSQL = "SELECT oid FROM flow_design WHERE pool=0 AND state=0 AND mtime>=? AND mtime<=? AND group_id=11"
  25. _flowGroupPool = "SELECT id, pool FROM flow_group WHERE id IN (%s)"
  26. _flowsByOIDSQL = "SELECT fd.id,fd.pool,fd.oid,fd.group_id,fd.parent,fd.state,fg.value FROM flow_design fd LEFT JOIN flow_group fg ON fd.group_id=fg.id WHERE fd.oid=? AND fd.state=0 AND fg.state=0"
  27. _flowsByGIDSQL = "SELECT fd.id,fd.pool,fd.oid,fd.group_id,fd.parent,fd.state,fg.value FROM flow_design fd LEFT JOIN flow_group fg ON fd.group_id=fg.id WHERE fd.pool=? AND fd.group_id=? AND fd.state=0 AND fg.state=0 LIMIT ?,?"
  28. _flowUniqueSQL = "SELECT id,pool,oid,group_id,parent,state FROM flow_design WHERE oid=? AND pool=? AND group_id=? LIMIT 1"
  29. _flowCountSQL = "SELECT count(*) FROM flow_design fd LEFT JOIN flow_group fg ON fd.group_id=fg.id WHERE fd.pool=? AND fd.group_id=? AND fd.state=0 AND fg.state=0 "
  30. _flowOidsByGidSQL = "SELECT fd.id,fd.pool,fd.oid,fd.group_id,fd.parent,fd.state,fg.value FROM flow_design fd LEFT JOIN flow_group fg ON fd.group_id=fg.id WHERE fd.pool=? AND fd.group_id=? AND fd.state=0 AND fg.state=0 AND fd.oid IN (%s) "
  31. )
  32. // TxAddFlow tx add flow_design.
  33. func (d *Dao) TxAddFlow(tx *sql.Tx, old, uid, groupID int64, pool int8, remark string) (id int64, err error) {
  34. res, err := tx.Exec(_inFlowSQL, pool, old, groupID, uid, remark)
  35. if err != nil {
  36. log.Error("d._inFlow.Exec() error(%v)", err)
  37. return
  38. }
  39. id, err = res.LastInsertId()
  40. return
  41. }
  42. // TxUpFlowState tx set flow_design.state=1.
  43. func (d *Dao) TxUpFlowState(tx *sql.Tx, state int8, id int64) (rows int64, err error) {
  44. res, err := tx.Exec(_upStateFlowSQL, state, id)
  45. if err != nil {
  46. log.Error("d.TxUpFlowState.Exec() error(%v)", err)
  47. return
  48. }
  49. rows, err = res.RowsAffected()
  50. return
  51. }
  52. // TxAddFlowLog tx add flow_design log.
  53. func (d *Dao) TxAddFlowLog(tx *sql.Tx, old, uid, groupID int64, pool int8, remark string) (rows int64, err error) {
  54. res, err := tx.Exec(_inFlowLogSQL, pool, old, groupID, uid, remark)
  55. if err != nil {
  56. log.Error("d._inFlowLog.Exec() error(%v)", err)
  57. return
  58. }
  59. rows, err = res.RowsAffected()
  60. return
  61. }
  62. // Flows get flow_control id and remark.
  63. func (d *Dao) Flows(c context.Context) (fs []*archive.Flow, err error) {
  64. rows, err := d.db.Query(c, _flowsSQL)
  65. if err != nil {
  66. log.Error("d.db.Query(%s) error(%v)", _flowsSQL, err)
  67. return
  68. }
  69. defer rows.Close()
  70. for rows.Next() {
  71. f := &archive.Flow{}
  72. if err = rows.Scan(&f.ID, &f.Rank, &f.Type, &f.Value, &f.Remark, &f.CTime); err != nil {
  73. log.Error("rows.Scan error(%v)", err)
  74. return
  75. }
  76. fs = append(fs, f)
  77. }
  78. return
  79. }
  80. // WhiteMids get white mids.
  81. func (d *Dao) WhiteMids(c context.Context) (mids map[int64]int64, err error) {
  82. rows, err := d.db.Query(c, _whiteMidSQL)
  83. if err != nil {
  84. log.Error("d.db.Query(%s) error(%v)", _whiteMidSQL, err)
  85. return
  86. }
  87. defer rows.Close()
  88. mids = make(map[int64]int64)
  89. for rows.Next() {
  90. var mid, uid int64
  91. if err = rows.Scan(&mid, &uid); err != nil {
  92. log.Error("rows.Scan error(%v)", err)
  93. return
  94. }
  95. mids[mid] = uid
  96. }
  97. return
  98. }
  99. // CheckActGroupID check active GroupID
  100. func (d *Dao) CheckActGroupID(c context.Context, groupID int64) (state int8, err error) {
  101. row := d.db.QueryRow(c, _isActGroupIDSQL, groupID)
  102. if err = row.Scan(&state); err != nil {
  103. if err != sql.ErrNoRows {
  104. log.Error("row.Scan error(%v)", err)
  105. return
  106. }
  107. err = nil
  108. state = archive.FlowDelete
  109. }
  110. return
  111. }
  112. // CheckFlowGroupID check active GroupID
  113. func (d *Dao) CheckFlowGroupID(c context.Context, pool int8, oid, groupID int64) (flowID int64, err error) {
  114. row := d.db.QueryRow(c, _isFlowGroupIDInSQL, pool, groupID, oid)
  115. if err = row.Scan(&flowID); err != nil {
  116. if err != sql.ErrNoRows {
  117. log.Error("row.Scan error(%v)", err)
  118. return
  119. }
  120. err = nil
  121. }
  122. return
  123. }
  124. //CheckFlowMid 通用 mid 流量导向到flow_design
  125. func (d *Dao) CheckFlowMid(c context.Context, pool int8, oid int64) (flows []*archive.FlowData, err error) {
  126. rows, err := d.db.Query(c, _isMidIDSQL, oid, pool)
  127. if err != nil {
  128. log.Error("d.db.Query (%s)|(%d)|(%d) error(%v)", _isMidIDSQL, oid, pool, err)
  129. return
  130. }
  131. defer rows.Close()
  132. for rows.Next() {
  133. item := &archive.FlowData{}
  134. if err = rows.Scan(&item.ID, &item.Pool, &item.OID, &item.GroupID, &item.Parent, &item.UID, &item.Remark, &item.CTime, &item.MTime); err != nil {
  135. log.Error("rows.Scan error(%v)", err)
  136. return
  137. }
  138. flows = append(flows, item)
  139. }
  140. log.Info("flowDesign mids design (%+v)", flows)
  141. return
  142. }
  143. // FindGroupIDByScope check active GroupID
  144. func (d *Dao) FindGroupIDByScope(c context.Context, pool int8, IndustryID, brandID int64, official int8) (groupID int64, err error) {
  145. row := d.db.QueryRow(c, _findGroupIDByScopeSQL, pool, IndustryID, brandID, official)
  146. if err = row.Scan(&groupID); err != nil {
  147. if err != sql.ErrNoRows {
  148. log.Error("row.Scan error(%v)", err)
  149. return
  150. }
  151. err = nil
  152. groupID = 1
  153. }
  154. return
  155. }
  156. //ForbidMids 稿件 mid 禁止配置 ForbidMids get forbid mids.
  157. func (d *Dao) ForbidMids(c context.Context) (mids map[int64][]string, err error) {
  158. rows, err := d.db.Query(c, _midsForbidSQL)
  159. if err != nil {
  160. log.Error("d.db.Query(%s) error(%v)", _midsForbidSQL, err)
  161. return
  162. }
  163. defer rows.Close()
  164. mids = make(map[int64][]string)
  165. for rows.Next() {
  166. var (
  167. id int64
  168. mid int64
  169. value string
  170. )
  171. if err = rows.Scan(&id, &mid, &value); err != nil {
  172. log.Error("rows.Scan error(%v)", err)
  173. return
  174. }
  175. mids[mid] = append(mids[mid], value)
  176. }
  177. log.Info("mids (%+v)", mids)
  178. return
  179. }
  180. // AppFeedAids get aids by appFeed flow.
  181. func (d *Dao) AppFeedAids(c context.Context, startTime, endTime time.Time) (aids []int64, err error) {
  182. rows, err := d.db.Query(c, _appFlowsSQL, startTime, endTime)
  183. if err != nil {
  184. log.Error("d.db.Query(%s|%v|%v) error(%v)", _appFlowsSQL, startTime, endTime, err)
  185. return
  186. }
  187. defer rows.Close()
  188. for rows.Next() {
  189. var aid int64
  190. if err = rows.Scan(&aid); err != nil {
  191. log.Error("rows.Scan error(%v)", err)
  192. return
  193. }
  194. if aid == 0 {
  195. continue
  196. }
  197. aids = append(aids, aid)
  198. }
  199. return
  200. }
  201. //FlowGroupPools 获取指定流量套餐的pool
  202. func (d *Dao) FlowGroupPools(c context.Context, ids []int64) (res map[int64]int8, err error) {
  203. var (
  204. rows *sql.Rows
  205. id int64
  206. pool int8
  207. )
  208. res = map[int64]int8{}
  209. idstr := xstr.JoinInts(ids)
  210. if rows, err = d.db.Query(context.TODO(), fmt.Sprintf(_flowGroupPool, idstr)); err != nil {
  211. log.Error("FlowGroupPools d.db.Query error(%v) ids(%s)", err, idstr)
  212. return
  213. }
  214. defer rows.Close()
  215. for rows.Next() {
  216. if err = rows.Scan(&id, &pool); err != nil {
  217. log.Error("FlowGroupPools rows.Scan error(%v) ids(%s)", err, idstr)
  218. return
  219. }
  220. res[id] = pool
  221. }
  222. return
  223. }
  224. //FlowsByOID 获取所有命中的流量套餐记录
  225. func (d *Dao) FlowsByOID(c context.Context, oid int64) (res []*archive.FlowData, err error) {
  226. var (
  227. rows *sql.Rows
  228. )
  229. res = []*archive.FlowData{}
  230. if rows, err = d.db.Query(context.TODO(), _flowsByOIDSQL, oid); err != nil {
  231. log.Error("FlowsByOID d.db.Query error(%v) oid(%d)", err, oid)
  232. return
  233. }
  234. defer rows.Close()
  235. for rows.Next() {
  236. f := &archive.FlowData{}
  237. if err = rows.Scan(&f.ID, &f.Pool, &f.OID, &f.GroupID, &f.Parent, &f.State, &f.GroupValue); err != nil {
  238. log.Error("FlowsByOID rows.Scan error(%v) oid(%d)", err, oid)
  239. return
  240. }
  241. res = append(res, f)
  242. }
  243. return
  244. }
  245. //FlowUnique 获取命中 指定流量套餐的记录
  246. func (d *Dao) FlowUnique(c context.Context, oid, groupID int64, pool int8) (f *archive.FlowData, err error) {
  247. f = &archive.FlowData{}
  248. if err = d.db.QueryRow(context.TODO(), _flowUniqueSQL, oid, pool, groupID).Scan(&f.ID, &f.Pool, &f.OID, &f.GroupID, &f.Parent, &f.State); err != nil {
  249. if err == sql.ErrNoRows {
  250. err = nil
  251. f = nil
  252. } else {
  253. log.Error("row.Scan error(%v)", err)
  254. }
  255. }
  256. return
  257. }
  258. //OidsFlowByGID 判断指定oids 是否是gid禁止的
  259. func (d *Dao) OidsFlowByGID(c context.Context, pool, gid int64, oids string) (res []*archive.FlowData, err error) {
  260. var (
  261. rows *sql.Rows
  262. )
  263. rows, err = d.db.Query(c, fmt.Sprintf(_flowOidsByGidSQL, oids), pool, gid)
  264. if err != nil {
  265. err = errors.WithStack(err)
  266. return
  267. }
  268. defer rows.Close()
  269. for rows.Next() {
  270. f := &archive.FlowData{}
  271. if err = rows.Scan(&f.ID, &f.Pool, &f.OID, &f.GroupID, &f.Parent, &f.State, &f.GroupValue); err != nil {
  272. log.Error("FlowsByOID rows.Scan error(%v) oid(%d)", err, gid)
  273. return
  274. }
  275. res = append(res, f)
  276. }
  277. return
  278. }
  279. // CountByGID count buy state.
  280. func (d *Dao) CountByGID(c context.Context, pool, gid int64) (count int64, err error) {
  281. row := d.db.QueryRow(c, _flowCountSQL, pool, gid)
  282. if err = row.Scan(&count); err != nil {
  283. if err == sql.ErrNoRows {
  284. err = nil
  285. } else {
  286. err = errors.WithStack(err)
  287. }
  288. }
  289. return
  290. }
  291. // FlowPage page.
  292. func (d *Dao) FlowPage(c context.Context, pool, gid, pn, ps int64) (res []*archive.FlowData, err error) {
  293. var rows *sql.Rows
  294. rows, err = d.db.Query(c, _flowsByGIDSQL, pool, gid, (pn-1)*ps, ps)
  295. if err != nil {
  296. err = errors.WithStack(err)
  297. return
  298. }
  299. defer rows.Close()
  300. for rows.Next() {
  301. f := &archive.FlowData{}
  302. if err = rows.Scan(&f.ID, &f.Pool, &f.OID, &f.GroupID, &f.Parent, &f.State, &f.GroupValue); err != nil {
  303. log.Error("FlowsByOID rows.Scan error(%v) oid(%d)", err, gid)
  304. return
  305. }
  306. res = append(res, f)
  307. }
  308. err = rows.Err()
  309. return
  310. }