mysql.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. package dao
  2. import (
  3. "context"
  4. "fmt"
  5. "time"
  6. model "go-common/app/interface/main/credit/model"
  7. "go-common/library/database/sql"
  8. "go-common/library/log"
  9. ctime "go-common/library/time"
  10. "go-common/library/xstr"
  11. "github.com/pkg/errors"
  12. )
  13. const (
  14. _insAnsLogSQL = "INSERT INTO blocked_labour_answer_log(mid,score,content,start_time) VALUES(?,?,?,?)"
  15. _insQsSQL = "INSERT INTO blocked_labour_question(question,ans,av_id,status,source) VALUES(?,?,?,?,?)"
  16. _updateQsSQL = "UPDATE blocked_labour_question SET ans=?,status=? WHERE id=?"
  17. _delQsSQL = "UPDATE blocked_labour_question SET isdel=? WHERE id=?"
  18. _selConfSQL = "SELECT config_key,content from blocked_config"
  19. _selNoticeSQL = "SELECT id,content,url FROM blocked_notice WHERE status=0 ORDER BY id DESC LIMIT 1"
  20. _selReasonSQL = "SELECT id,reason,content FROM blocked_reason WHERE status=0"
  21. _selQuestionSQL = "SELECT id,question,ans FROM blocked_labour_question WHERE id IN(%s) AND status=2 ORDER BY find_in_set(id,'%s') "
  22. _selAllQuestionSQL = "SELECT id,question,ans,av_id,status,source,ctime,mtime FROM blocked_labour_question WHERE id IN(%s) "
  23. _isAnsweredSQL = "SELECT COUNT(*) FROM blocked_labour_answer_log WHERE mid=? AND score=100 AND mtime>=?"
  24. _noAuditQuestionSQL = "SELECT id,av_id,question FROM blocked_labour_question WHERE status=2 ORDER BY id DESC LIMIT 20"
  25. _auditQuestionSQL = "SELECT id,av_id,question FROM blocked_labour_question WHERE status=1 AND ans=0 ORDER BY id DESC LIMIT 20"
  26. _selKPISQL = "SELECT k.mid,k.day,k.rate,k.rank,k.rank_per,k.rank_total,p.point,p.active_days,p.vote_total,p.opinion_likes,p.vote_real_total from blocked_kpi k inner join blocked_kpi_data p on k.mid=p.mid and k.day=p.day where k.mid = ?"
  27. _announcementInfoSQL = `SELECT id,title,sub_title,publish_status,stick_status,content,url,ctime,mtime FROM blocked_publish WHERE id = ? AND publish_status = 1 AND status = 0`
  28. _announcementListSQL = `SELECT id,title,sub_title,publish_status,stick_status,content,url,ptype,ctime,mtime FROM blocked_publish WHERE publish_status = 1 AND status = 0 AND show_time <= ? ORDER BY ctime desc`
  29. _publishsSQL = "SELECT id,title,sub_title,stick_status,content,ctime FROM blocked_publish WHERE id IN (%s) AND publish_status = 1 AND status = 0"
  30. _selNewKPISQL = "SELECT rate FROM blocked_kpi WHERE mid=? ORDER BY id DESC LIMIT 1"
  31. )
  32. // AddAnsLog add labour answer log.
  33. func (d *Dao) AddAnsLog(c context.Context, mid int64, score int64, anstr string, stime ctime.Time) (affect int64, err error) {
  34. result, err := d.db.Exec(c, _insAnsLogSQL, mid, score, anstr, stime)
  35. if err != nil {
  36. log.Error("AddAnsLog: db.Exec(mid:%d,score:%d,ans:%s) error(%v)", mid, score, anstr, err)
  37. return
  38. }
  39. affect, err = result.LastInsertId()
  40. return
  41. }
  42. // AddQs add labour question log.
  43. func (d *Dao) AddQs(c context.Context, qs *model.LabourQs) (err error) {
  44. if _, err = d.db.Exec(c, _insQsSQL, qs.Question, qs.Ans, qs.AvID, qs.Status, qs.Source); err != nil {
  45. log.Error("AddQs: db.Exec(as:%v) error(%v)", qs, err)
  46. }
  47. return
  48. }
  49. // SetQs set labour question field.
  50. func (d *Dao) SetQs(c context.Context, id int64, ans int64, status int64) (err error) {
  51. if _, err = d.db.Exec(c, _updateQsSQL, ans, status, id); err != nil {
  52. log.Error("setQs: db.Exec(ans:%d status:%d) error(%v)", ans, status, err)
  53. }
  54. return
  55. }
  56. // DelQs del labour question.
  57. func (d *Dao) DelQs(c context.Context, id int64, isDel int64) (err error) {
  58. if _, err = d.db.Exec(c, _delQsSQL, isDel, id); err != nil {
  59. log.Error("setQs: db.Exec(id:%d isDel:%d) error(%v)", id, isDel, err)
  60. }
  61. return
  62. }
  63. // LoadConf load conf.
  64. func (d *Dao) LoadConf(c context.Context) (cf map[string]string, err error) {
  65. cf = make(map[string]string)
  66. rows, err := d.db.Query(c, _selConfSQL)
  67. if err != nil {
  68. log.Error("d.loadConf err(%v)", err)
  69. return
  70. }
  71. defer rows.Close()
  72. var (
  73. key string
  74. value string
  75. )
  76. for rows.Next() {
  77. if err = rows.Scan(&key, &value); err != nil {
  78. log.Error("rows.Scan err(%v)", err)
  79. return
  80. }
  81. cf[key] = value
  82. }
  83. err = rows.Err()
  84. return
  85. }
  86. // Notice get notice
  87. func (d *Dao) Notice(c context.Context) (n *model.Notice, err error) {
  88. row := d.db.QueryRow(c, _selNoticeSQL)
  89. if err != nil {
  90. log.Error("Notice: d.QueryRow error(%v)", err)
  91. return
  92. }
  93. n = &model.Notice{}
  94. if err = row.Scan(&n.ID, &n.Content, &n.URL); err != nil {
  95. log.Error("row.Scan() error(%v)", err)
  96. }
  97. return
  98. }
  99. // ReasonList get reason list
  100. func (d *Dao) ReasonList(c context.Context) (res []*model.Reason, err error) {
  101. rows, err := d.db.Query(c, _selReasonSQL)
  102. if err != nil {
  103. log.Error("reasonList: d.db.Query error(%v)", err)
  104. return
  105. }
  106. defer rows.Close()
  107. for rows.Next() {
  108. r := new(model.Reason)
  109. if err = rows.Scan(&r.ID, &r.Reason, &r.Content); err != nil {
  110. log.Error("row.Scan() error(%v)", err)
  111. res = nil
  112. return
  113. }
  114. res = append(res, r)
  115. }
  116. err = rows.Err()
  117. return
  118. }
  119. // QsList get question list.
  120. func (d *Dao) QsList(c context.Context, idStr string) (res []*model.LabourQs, err error) {
  121. var rows *sql.Rows
  122. if rows, err = d.db.Query(c, fmt.Sprintf(_selQuestionSQL, idStr, idStr)); err != nil {
  123. log.Error("d.QuestionList.Query(%s) error(%v)", idStr, err)
  124. return
  125. }
  126. defer rows.Close()
  127. for rows.Next() {
  128. r := new(model.LabourQs)
  129. if err = rows.Scan(&r.ID, &r.Question, &r.Ans); err != nil {
  130. log.Error("row.Scan() error(%v)", err)
  131. res = nil
  132. return
  133. }
  134. res = append(res, r)
  135. }
  136. err = rows.Err()
  137. return
  138. }
  139. // QsAllList get question list.
  140. func (d *Dao) QsAllList(c context.Context, idStr string) (mlab map[int64]*model.LabourQs, labs []*model.LabourQs, avIDs []int64, err error) {
  141. var rows *sql.Rows
  142. if rows, err = d.db.Query(c, fmt.Sprintf(_selAllQuestionSQL, idStr)); err != nil {
  143. return
  144. }
  145. defer rows.Close()
  146. mlab = make(map[int64]*model.LabourQs, 40)
  147. for rows.Next() {
  148. r := new(model.LabourQs)
  149. if err = rows.Scan(&r.ID, &r.Question, &r.Ans, &r.AvID, &r.Status, &r.Source, &r.Ctime, &r.Mtime); err != nil {
  150. if err == sql.ErrNoRows {
  151. err = nil
  152. }
  153. mlab = nil
  154. labs = nil
  155. avIDs = nil
  156. return
  157. }
  158. mlab[r.ID] = r
  159. labs = append(labs, r)
  160. if r.AvID != 0 {
  161. avIDs = append(avIDs, r.AvID)
  162. }
  163. }
  164. err = rows.Err()
  165. return
  166. }
  167. // AnswerStatus get blocked user answer status.
  168. func (d *Dao) AnswerStatus(c context.Context, mid int64, ts time.Time) (status bool, err error) {
  169. row := d.db.QueryRow(c, _isAnsweredSQL, mid, ts)
  170. var count int64
  171. if err = row.Scan(&count); err != nil {
  172. if err != sql.ErrNoRows {
  173. err = errors.Wrap(err, "AnswerStatus")
  174. return
  175. }
  176. count = 0
  177. err = nil
  178. }
  179. status = count > 0
  180. return
  181. }
  182. // LastNoAuditQuestion get new no audit question data.
  183. func (d *Dao) LastNoAuditQuestion(c context.Context) (res []*model.LabourQs, avIDs []int64, err error) {
  184. rows, err := d.db.Query(c, _noAuditQuestionSQL)
  185. if err != nil {
  186. log.Error("d.db.Query err(%v)", err)
  187. return
  188. }
  189. defer rows.Close()
  190. for rows.Next() {
  191. labourQs := &model.LabourQs{}
  192. if err = rows.Scan(&labourQs.ID, &labourQs.AvID, &labourQs.Question); err != nil {
  193. if err == sql.ErrNoRows {
  194. err = nil
  195. } else {
  196. log.Error("rows.Scan err(%v)", err)
  197. }
  198. res = []*model.LabourQs{}
  199. avIDs = []int64{}
  200. return
  201. }
  202. res = append(res, labourQs)
  203. if labourQs.AvID != 0 {
  204. avIDs = append(avIDs, labourQs.AvID)
  205. }
  206. }
  207. err = rows.Err()
  208. return
  209. }
  210. // LastAuditQuestion get new audit question data.
  211. func (d *Dao) LastAuditQuestion(c context.Context) (res []*model.LabourQs, avIDs []int64, err error) {
  212. rows, err := d.db.Query(c, _auditQuestionSQL)
  213. if err != nil {
  214. log.Error("d.db.Query err(%v)", err)
  215. return
  216. }
  217. defer rows.Close()
  218. for rows.Next() {
  219. labourQs := &model.LabourQs{}
  220. if err = rows.Scan(&labourQs.ID, &labourQs.AvID, &labourQs.Question); err != nil {
  221. if err == sql.ErrNoRows {
  222. err = nil
  223. } else {
  224. log.Error("rows.Scan err(%v)", err)
  225. }
  226. res = []*model.LabourQs{}
  227. avIDs = []int64{}
  228. return
  229. }
  230. res = append(res, labourQs)
  231. if labourQs.AvID != 0 {
  232. avIDs = append(avIDs, labourQs.AvID)
  233. }
  234. }
  235. err = rows.Err()
  236. return
  237. }
  238. // KPIList get kpi list.
  239. func (d *Dao) KPIList(c context.Context, mid int64) (res []*model.KPIData, err error) {
  240. var rows *sql.Rows
  241. if rows, err = d.db.Query(c, _selKPISQL, mid); err != nil {
  242. log.Error("KpiList: d.db.Query error(%v)", err)
  243. return
  244. }
  245. defer rows.Close()
  246. for rows.Next() {
  247. r := new(model.KPIData)
  248. if err = rows.Scan(&r.Mid, &r.Day, &r.Rate, &r.RankPer, &r.RankPer, &r.RankTotal, &r.Point, &r.ActiveDays, &r.VoteTotal, &r.OpinionLikes, &r.VoteRealTotal); err != nil {
  249. log.Error("row.Scan() error(%v)", err)
  250. res = nil
  251. return
  252. }
  253. res = append(res, r)
  254. }
  255. err = rows.Err()
  256. return
  257. }
  258. // AnnouncementInfo get announcement detail.
  259. func (d *Dao) AnnouncementInfo(c context.Context, aid int64) (r *model.BlockedAnnouncement, err error) {
  260. row := d.db.QueryRow(c, _announcementInfoSQL, aid)
  261. if err = row.Scan(&r.ID, &r.Title, &r.SubTitle, &r.Content, &r.PublishStatus, &r.StickStatus, &r.URL, &r.Ptype, &r.CTime, &r.MTime); err != nil {
  262. if err == sql.ErrNoRows {
  263. err = nil
  264. return
  265. }
  266. err = errors.Wrap(err, "AnnouncementInfo")
  267. }
  268. return
  269. }
  270. // AnnouncementList get accnoucement list.
  271. func (d *Dao) AnnouncementList(c context.Context) (res []*model.BlockedAnnouncement, err error) {
  272. rows, err := d.db.Query(c, _announcementListSQL, time.Now())
  273. if err != nil {
  274. err = errors.Wrap(err, "AnnouncementList")
  275. return
  276. }
  277. defer rows.Close()
  278. for rows.Next() {
  279. r := new(model.BlockedAnnouncement)
  280. if err = rows.Scan(&r.ID, &r.Title, &r.SubTitle, &r.PublishStatus, &r.StickStatus, &r.Content, &r.URL, &r.Ptype, &r.CTime, &r.MTime); err != nil {
  281. if err == sql.ErrNoRows {
  282. err = nil
  283. return
  284. }
  285. err = errors.Wrap(err, "AnnouncementList")
  286. return
  287. }
  288. res = append(res, r)
  289. }
  290. err = rows.Err()
  291. return
  292. }
  293. // BatchPublishs get publish info list.
  294. func (d *Dao) BatchPublishs(c context.Context, ids []int64) (res map[int64]*model.BlockedAnnouncement, err error) {
  295. rows, err := d.db.Query(c, fmt.Sprintf(_publishsSQL, xstr.JoinInts(ids)))
  296. if err != nil {
  297. err = errors.Wrap(err, "BatchPublishs")
  298. return
  299. }
  300. res = make(map[int64]*model.BlockedAnnouncement)
  301. defer rows.Close()
  302. for rows.Next() {
  303. r := new(model.BlockedAnnouncement)
  304. if err = rows.Scan(&r.ID, &r.Title, &r.SubTitle, &r.StickStatus, &r.Content, &r.CTime); err != nil {
  305. if err == sql.ErrNoRows {
  306. err = nil
  307. return
  308. }
  309. err = errors.Wrap(err, "BatchPublishs")
  310. return
  311. }
  312. res[r.ID] = r
  313. }
  314. err = rows.Err()
  315. return
  316. }
  317. // NewKPI return user newest KPI rate.
  318. func (d *Dao) NewKPI(c context.Context, mid int64) (rate int8, err error) {
  319. row := d.db.QueryRow(c, _selNewKPISQL, mid)
  320. if err != nil {
  321. log.Error("NewKPI: d.QueryRow error(%v)", err)
  322. return
  323. }
  324. if err = row.Scan(&rate); err != nil {
  325. if err == sql.ErrNoRows {
  326. rate = model.KPILevelC
  327. err = nil
  328. return
  329. }
  330. log.Error("row.Scan() error(%v)", err)
  331. }
  332. return
  333. }