utils.go 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. package api
  2. import (
  3. "box-cost/db/model"
  4. "box-cost/db/repo"
  5. "box-cost/log"
  6. "bytes"
  7. "fmt"
  8. "math"
  9. "math/rand"
  10. "net/http"
  11. "os"
  12. "sync"
  13. "time"
  14. "unsafe"
  15. "github.com/gin-gonic/gin"
  16. "github.com/thecodingmachine/gotenberg-go-client/v7"
  17. "go.mongodb.org/mongo-driver/bson"
  18. "go.mongodb.org/mongo-driver/bson/primitive"
  19. )
  20. var SignatureDir string = "https://www.3dqueen.cloud/box/v1/boxcost/public/"
  21. func makeBillQuery(query map[string]interface{}) map[string]interface{} {
  22. if query["packId"] != nil {
  23. query["packId"], _ = primitive.ObjectIDFromHex(query["packId"].(string))
  24. }
  25. if query["planId"] != nil {
  26. query["planId"], _ = primitive.ObjectIDFromHex(query["planId"].(string))
  27. }
  28. // 时间范围查询
  29. // createTime 选中的当天时间
  30. st, ok1 := query["startTime"]
  31. delete(query, "startTime")
  32. et, ok2 := query["endTime"]
  33. delete(query, "endTime")
  34. if ok1 && ok2 {
  35. startTime := st.(string)
  36. endTime := et.(string)
  37. start, end := getTimeRange(startTime, endTime)
  38. query["createTime"] = bson.M{"$gte": start, "$lte": end}
  39. }
  40. if productName, ok := query["productName"]; ok {
  41. delete(query, "productName")
  42. query["productName"] = bson.M{"$regex": productName.(string)}
  43. }
  44. return query
  45. }
  46. // func getRowHeight(content string, width float64,lineHeight float64) float64 {
  47. // 第一个参数为 行宽 第二个参数为 行高
  48. func getRowHeight(content string, params ...float64) float64 {
  49. var perHeight float64 = 16
  50. if len(params) == 2 {
  51. perHeight = params[1]
  52. }
  53. num := float64(len([]rune(content)))
  54. // 一行能容纳多少字
  55. rowNum := params[0] / 1.5
  56. // 向上取整获取行数 * 每行高度
  57. rowHeight := math.Ceil(num/rowNum) * perHeight
  58. return rowHeight
  59. }
  60. // 保存文件为pdf
  61. func savePdfToTmp(saveTmpDir, fileName string, data []byte) error {
  62. err := os.MkdirAll(saveTmpDir, os.ModePerm)
  63. if err != nil {
  64. log.Error(err)
  65. return err
  66. }
  67. fullFileName := fmt.Sprintf("%s/%s", saveTmpDir, fileName)
  68. if err := os.WriteFile(fullFileName, data, 0666); err != nil {
  69. log.Error(err)
  70. return err
  71. }
  72. return nil
  73. }
  74. // 保存文件
  75. func saveExcelToTmp(saveTmpDir, fileName string, data []byte, toExcelResult chan<- int, wg *sync.WaitGroup) {
  76. err := os.MkdirAll(saveTmpDir, os.ModePerm)
  77. if err != nil {
  78. log.Error(err)
  79. fmt.Println(err)
  80. toExcelResult <- -1
  81. wg.Done()
  82. return
  83. }
  84. fullFileName := fmt.Sprintf("%s/%s", saveTmpDir, fileName)
  85. if err := os.WriteFile(fullFileName, data, 0666); err != nil {
  86. log.Error(err)
  87. fmt.Println(err)
  88. toExcelResult <- -1
  89. wg.Done()
  90. return
  91. }
  92. toExcelResult <- 1
  93. wg.Done()
  94. }
  95. func saveExcelToTmp1(saveTmpDir, fileName string, data []byte) error {
  96. err := os.MkdirAll(saveTmpDir, os.ModePerm)
  97. if err != nil {
  98. log.Error(err)
  99. fmt.Println(err)
  100. return err
  101. }
  102. fullFileName := fmt.Sprintf("%s/%s", saveTmpDir, fileName)
  103. if err := os.WriteFile(fullFileName, data, 0666); err != nil {
  104. log.Error(err)
  105. fmt.Println(err)
  106. return err
  107. }
  108. return nil
  109. }
  110. func isExistDir(dir string) bool {
  111. _, err := os.Stat(dir)
  112. if err != nil {
  113. return os.IsExist(err)
  114. }
  115. return true
  116. }
  117. // 去重相邻元素
  118. func removeDuplicationSort(arr []string) []string {
  119. length := len(arr)
  120. if length == 0 {
  121. return arr
  122. }
  123. j := 0
  124. for i := 1; i < length; i++ {
  125. if arr[i] != arr[j] {
  126. j++
  127. if j < i {
  128. swap(arr, i, j)
  129. }
  130. }
  131. }
  132. return arr[:j+1]
  133. }
  134. func swap(arr []string, a, b int) {
  135. arr[a], arr[b] = arr[b], arr[a]
  136. }
  137. func generateSerial(c *gin.Context, ctx *ApiSession, typeName string) (serial string, err error) {
  138. // 获取类型
  139. cate := &model.Category{}
  140. found, err := repo.RepoSeachDoc(ctx.CreateRepoCtx(), &repo.DocSearchOptions{
  141. CollectName: "cates",
  142. Project: []string{"letterName"},
  143. Query: repo.Map{"name": typeName},
  144. Sort: bson.M{"_id": -1},
  145. }, cate)
  146. if !found || err != nil {
  147. return "", fmt.Errorf("未找到该类型")
  148. }
  149. // 自增器 increment index加1
  150. increment := &model.Increment{}
  151. found, _ = repo.RepoSeachDoc(ctx.CreateRepoCtx(), &repo.DocSearchOptions{
  152. CollectName: repo.CollectionIncrement,
  153. Query: repo.Map{"type": cate.LetterName},
  154. Project: []string{"index"},
  155. Sort: bson.M{"_id": -1},
  156. }, increment)
  157. if !found {
  158. repo.RepoAddDoc(ctx.CreateRepoCtx(), repo.CollectionIncrement, &model.Increment{
  159. Type: cate.LetterName,
  160. Index: 1,
  161. })
  162. return fmt.Sprintf("%s-%06d", cate.LetterName, 1), nil
  163. }
  164. index := increment.Index + 1
  165. // repo.RepoUpdateSetDoc(ctx.CreateRepoCtx(), repo.CollectionIncrement, increment.Id.Hex(), &model.Increment{Index: index})
  166. repo.RepoUpdateSetDoc1(ctx.CreateRepoCtx(), repo.CollectionIncrement, increment.Id.Hex(), &model.Increment{Index: index}, &repo.RecordLogReq{
  167. Path: c.Request.URL.Path,
  168. TargetId: increment.Id.Hex(),
  169. })
  170. // 拼接为序号
  171. return fmt.Sprintf("%s-%06d", cate.LetterName, index), nil
  172. }
  173. func searchBillTypeById(ctx *ApiSession, collectName string, id primitive.ObjectID) (string, error) {
  174. fmt.Println(id.Hex())
  175. found, curbill := repo.RepoSeachDocMap(ctx.CreateRepoCtx(), &repo.DocSearchOptions{
  176. CollectName: collectName,
  177. Project: []string{"type"},
  178. Query: repo.Map{"_id": id},
  179. Sort: bson.M{"_id": -1},
  180. })
  181. if !found {
  182. return "", fmt.Errorf("未找到该类型")
  183. }
  184. return curbill["type"].(string), nil
  185. }
  186. func excelToPdf(formBody *bytes.Buffer, pdfHost string) (*http.Response, error) {
  187. httpClient := &http.Client{
  188. Timeout: time.Duration(15) * time.Second,
  189. }
  190. client := &gotenberg.Client{Hostname: pdfHost, HTTPClient: httpClient}
  191. // 'merge="true"' \
  192. // --form 'pdfFormat="PDF/A-1a"' \
  193. // formData := url.Values{
  194. // "merge": {"true"},
  195. // "pdfFormat": {"PDF/A-1a"},
  196. // }
  197. // 构建请求体
  198. // reqData := bytes.NewBufferString(formData.Encode())
  199. // reqData.WriteTo(formBody)
  200. doc, err := gotenberg.NewDocumentFromBytes("foo.xlsx", formBody.Bytes())
  201. if err != nil {
  202. fmt.Println(" to pdf read data err:", err)
  203. return nil, err
  204. }
  205. req := gotenberg.NewOfficeRequest(doc)
  206. req.Landscape(true)
  207. return client.Post(req)
  208. }
  209. func isManager(roles []string) bool {
  210. if len(roles) > 0 {
  211. for _, role := range roles {
  212. if role == "manager" {
  213. return true
  214. }
  215. }
  216. }
  217. return false
  218. }
  219. func isSender(roles []string) bool {
  220. if len(roles) > 0 {
  221. for _, role := range roles {
  222. if role == "sender" {
  223. return true
  224. }
  225. }
  226. }
  227. return false
  228. }
  229. func getUserById(apictx *ApiSession, id primitive.ObjectID) (*model.UserSmaple, error) {
  230. user := &model.UserSmaple{}
  231. _, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  232. Db: "box-user",
  233. CollectName: repo.CollectionUsers,
  234. Query: repo.Map{"_id": id},
  235. Project: []string{"name", "avatar", "city", "loginName", "roles", "phone"},
  236. }, user)
  237. return user, err
  238. }
  239. // 获取一天的起始终止时间
  240. // func getDayRange(t time.Time) (start, end time.Time) {
  241. // loc, _ := time.LoadLocation("Local")
  242. // date := t.Format("2006-01-02")
  243. // startDate := date + " 00:00:00"
  244. // startTime, _ := time.ParseInLocation("2006-01-02 15:04:05", startDate, loc)
  245. // endDate := date + " 23:59:59"
  246. // endTime, _ := time.ParseInLocation("2006-01-02 15:04:05", endDate, loc)
  247. // return startTime, endTime
  248. // }
  249. // 获取时间跨度的起始终止时间
  250. // startDate/endDate 2023-01-31
  251. func getTimeRange(startDate, endDate string) (start, end time.Time) {
  252. loc, _ := time.LoadLocation("Local")
  253. startDateTime := startDate + " 00:00:00"
  254. endDateTime := endDate + " 23:59:59"
  255. start, _ = time.ParseInLocation("2006-01-02 15:04:05", startDateTime, loc)
  256. end, _ = time.ParseInLocation("2006-01-02 15:04:05", endDateTime, loc)
  257. return
  258. }
  259. // 处理报表query条件
  260. func handleReportQuery(query map[string]interface{}) map[string]interface{} {
  261. // 条件处理
  262. query["status"] = "complete"
  263. if _supplierId, ok := query["supplierId"]; ok {
  264. delete(query, "supplierId")
  265. supplierId, _ := primitive.ObjectIDFromHex(_supplierId.(string))
  266. if !supplierId.IsZero() {
  267. query["supplierId"] = supplierId
  268. }
  269. }
  270. if _timeRange, ok := query["timeRange"]; ok {
  271. timeRange, _ := _timeRange.([]interface{})
  272. if len(timeRange) == 2 {
  273. start, end := getTimeRange(timeRange[0].(string), timeRange[1].(string))
  274. query["completeTime"] = bson.M{"$gte": start, "$lte": end}
  275. }
  276. delete(query, "timeRange")
  277. }
  278. if _planIds, ok := query["planIds"]; ok {
  279. if len(_planIds.([]interface{})) > 0 {
  280. planQuery := bson.A{}
  281. for _, _planId := range _planIds.([]interface{}) {
  282. planId, _ := primitive.ObjectIDFromHex(_planId.(string))
  283. planQuery = append(planQuery, bson.M{"planId": planId})
  284. }
  285. query["$or"] = planQuery
  286. }
  287. delete(query, "planIds")
  288. }
  289. return query
  290. }
  291. // 获取公司名字
  292. func getCompanyName(apictx *ApiSession) string {
  293. companyName := "中鱼互动"
  294. info := model.Setting{}
  295. found, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  296. CollectName: "infos",
  297. }, &info)
  298. if found {
  299. if info.CompanyName != "" {
  300. companyName = info.CompanyName
  301. }
  302. }
  303. return companyName
  304. }
  305. const (
  306. letterIdBits = 6
  307. letterIdMask = 1<<letterIdBits - 1
  308. letterIdMax = 63 / letterIdBits
  309. letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
  310. )
  311. var src = rand.NewSource(time.Now().UnixNano())
  312. func randName(n int) string {
  313. b := make([]byte, n)
  314. for i, cache, remain := n-1, src.Int63(), letterIdMax; i >= 0; {
  315. if remain == 0 {
  316. cache, remain = src.Int63(), letterIdMax
  317. }
  318. if idx := int(cache & letterIdMask); idx < len(letters) {
  319. b[i] = letters[idx]
  320. i--
  321. }
  322. cache >>= letterIdBits
  323. remain--
  324. }
  325. return *(*string)(unsafe.Pointer(&b))
  326. }