util.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  1. package pkg
  2. import (
  3. "bytes"
  4. "crypto/md5"
  5. "crypto/sha1"
  6. "crypto/sha256"
  7. "crypto/tls"
  8. "encoding/binary"
  9. "encoding/hex"
  10. "fmt"
  11. "io"
  12. "math"
  13. "net/http"
  14. "net/url"
  15. "os"
  16. "os/exec"
  17. "path"
  18. "path/filepath"
  19. "regexp"
  20. "runtime"
  21. "strconv"
  22. "strings"
  23. "time"
  24. "github.com/allanpk716/ChineseSubFinder/pkg/local_http_proxy_server"
  25. "github.com/allanpk716/ChineseSubFinder/pkg/types/common"
  26. "github.com/allanpk716/ChineseSubFinder/pkg/regex_things"
  27. "github.com/allanpk716/ChineseSubFinder/pkg/settings"
  28. browser "github.com/allanpk716/fake-useragent"
  29. "github.com/go-resty/resty/v2"
  30. "github.com/google/uuid"
  31. "github.com/sirupsen/logrus"
  32. )
  33. // NewHttpClient 新建一个 resty 的对象
  34. func NewHttpClient(referer ...string) (*resty.Client, error) {
  35. //const defUserAgent = "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50"
  36. //const defUserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 Edg/91.0.864.41"
  37. var UserAgent, Referer string
  38. // ------------------------------------------------
  39. // 随机的 Browser
  40. UserAgent = browser.Random()
  41. // ------------------------------------------------
  42. httpClient := resty.New().SetTransport(&http.Transport{
  43. DisableKeepAlives: true,
  44. MaxIdleConns: 1000,
  45. MaxIdleConnsPerHost: 1000,
  46. })
  47. httpClient.SetTimeout(common.HTMLTimeOut)
  48. httpClient.SetRetryCount(1)
  49. // ------------------------------------------------
  50. // 设置 Referer
  51. if len(referer) > 0 {
  52. Referer = referer[0]
  53. if len(Referer) > 0 {
  54. httpClient.SetHeader("Referer", Referer)
  55. }
  56. }
  57. // ------------------------------------------------
  58. // 设置 Header
  59. httpClient.SetHeaders(map[string]string{
  60. "Content-Type": "application/json",
  61. "User-Agent": UserAgent,
  62. })
  63. // ------------------------------------------------
  64. // 不要求安全链接
  65. httpClient.SetTLSClientConfig(&tls.Config{InsecureSkipVerify: true})
  66. // ------------------------------------------------
  67. // http 代理
  68. HttpProxyAddress := local_http_proxy_server.GetProxyUrl()
  69. if HttpProxyAddress != "" {
  70. httpClient.SetProxy(HttpProxyAddress)
  71. } else {
  72. httpClient.RemoveProxy()
  73. }
  74. return httpClient, nil
  75. }
  76. func getPublicIP(inputSite string) string {
  77. var client *resty.Client
  78. client, err := NewHttpClient()
  79. if err != nil {
  80. return ""
  81. }
  82. response, err := client.R().Get(inputSite)
  83. if err != nil {
  84. return ""
  85. }
  86. return response.String()
  87. }
  88. func GetPublicIP(log *logrus.Logger, queue *settings.TaskQueue) string {
  89. defPublicIPSites := []string{
  90. "https://myip.biturl.top/",
  91. "https://ip4.seeip.org/",
  92. "https://ipecho.net/plain",
  93. "https://api-ipv4.ip.sb/ip",
  94. "https://api.ipify.org/",
  95. "http://myexternalip.com/raw",
  96. }
  97. customPublicIPSites := make([]string, 0)
  98. if queue.CheckPublicIPTargetSite != "" {
  99. // 自定义了公网IP查询网站
  100. tSites := strings.Split(queue.CheckPublicIPTargetSite, ";")
  101. if tSites != nil && len(tSites) > 0 {
  102. customPublicIPSites = append(customPublicIPSites, tSites...)
  103. }
  104. } else {
  105. customPublicIPSites = append(customPublicIPSites, defPublicIPSites...)
  106. }
  107. for i, publicIPSite := range customPublicIPSites {
  108. log.Debugln("[GetPublicIP]", i, publicIPSite)
  109. publicIP := getPublicIP(publicIPSite)
  110. matcheds := regex_things.ReMatchIP.FindAllString(publicIP, -1)
  111. if publicIP != "" || matcheds == nil || len(matcheds) == 0 {
  112. log.Infoln("[GetPublicIP]", publicIP)
  113. return publicIP
  114. }
  115. }
  116. return ""
  117. }
  118. // DownFile 从指定的 url 下载文件
  119. func DownFile(l *logrus.Logger, urlStr string) ([]byte, string, error) {
  120. var err error
  121. var httpClient *resty.Client
  122. httpClient, err = NewHttpClient()
  123. if err != nil {
  124. return nil, "", err
  125. }
  126. resp, err := httpClient.R().Get(urlStr)
  127. if err != nil {
  128. return nil, "", err
  129. }
  130. filename := GetFileName(l, resp.RawResponse)
  131. if filename == "" {
  132. l.Warningln("DownFile.GetFileName is string.empty", urlStr)
  133. }
  134. return resp.Body(), filename, nil
  135. }
  136. // GetFileName 获取下载文件的文件名
  137. func GetFileName(l *logrus.Logger, resp *http.Response) string {
  138. contentDisposition := resp.Header.Get("Content-Disposition")
  139. if len(contentDisposition) == 0 {
  140. m := regexp.MustCompile(`^(.*/)?(?:$|(.+?)(?:(\.[^.]*$)|$))`).FindStringSubmatch(resp.Request.URL.String())
  141. if m == nil || len(m) < 4 {
  142. l.Warningln("GetFileName.regexp.MustCompile.FindStringSubmatch", resp.Request.URL.String())
  143. return ""
  144. }
  145. return m[2] + m[3]
  146. }
  147. re := regexp.MustCompile(`filename=["]*([^"]+)["]*`)
  148. matched := re.FindStringSubmatch(contentDisposition)
  149. if matched == nil || len(matched) == 0 || len(matched[0]) == 0 {
  150. l.Errorln("GetFileName.Content-Disposition", contentDisposition)
  151. return ""
  152. }
  153. return matched[1]
  154. }
  155. // AddBaseUrl 判断传入的 url 是否需要拼接 baseUrl
  156. func AddBaseUrl(baseUrl, url string) string {
  157. if strings.Contains(url, "://") {
  158. return url
  159. }
  160. return fmt.Sprintf("%s%s", baseUrl, url)
  161. }
  162. // IsDir 存在且是文件夹
  163. func IsDir(path string) bool {
  164. s, err := os.Stat(path)
  165. if err != nil {
  166. return false
  167. }
  168. return s.IsDir()
  169. }
  170. // IsFile 存在且是文件
  171. func IsFile(filePath string) bool {
  172. s, err := os.Stat(filePath)
  173. if err != nil {
  174. return false
  175. }
  176. return !s.IsDir()
  177. }
  178. // FileNameIsBDMV 是否是 BDMV 蓝光目录,符合返回 true,以及 fakseVideoFPath
  179. func FileNameIsBDMV(id_bdmv_fileFPath string) (bool, string) {
  180. /*
  181. 这类蓝光视频比较特殊,它没有具体的一个后缀名的视频文件而是由两个文件夹来存储视频数据
  182. * BDMV
  183. * CERTIFICATE
  184. 但是不管如何,都需要使用一个文件作为锚点,就选定 CERTIFICATE 中的 id.bdmv 文件
  185. 后续的下载逻辑也需要单独为这个文件进行处理,比如,从这个文件向上一层获取 nfo 文件,
  186. 以及再上一层得到视频文件夹名称等
  187. */
  188. if strings.ToLower(filepath.Base(id_bdmv_fileFPath)) == common.FileBDMV {
  189. // 这个文件是确认了,那么就需要查看这个文件父级目录是不是 CERTIFICATE 文件夹
  190. // 且 CERTIFICATE 需要和 BDMV 文件夹都存在
  191. CERDir := filepath.Dir(id_bdmv_fileFPath)
  192. BDMVDir := filepath.Join(filepath.Dir(CERDir), "BDMV")
  193. if IsDir(CERDir) == true && IsDir(BDMVDir) == true {
  194. return true, filepath.Join(filepath.Dir(CERDir), filepath.Base(filepath.Dir(CERDir))+common.VideoExtMp4)
  195. }
  196. }
  197. return false, ""
  198. }
  199. // IsWantedVideoExtDef 后缀名是否符合规则
  200. func IsWantedVideoExtDef(fileName string) bool {
  201. if len(_wantedExtMap) < 1 {
  202. _defExtMap[common.VideoExtMp4] = common.VideoExtMp4
  203. _defExtMap[common.VideoExtMkv] = common.VideoExtMkv
  204. _defExtMap[common.VideoExtRmvb] = common.VideoExtRmvb
  205. _defExtMap[common.VideoExtIso] = common.VideoExtIso
  206. _defExtMap[common.VideoExtM2ts] = common.VideoExtM2ts
  207. _wantedExtMap[common.VideoExtMp4] = common.VideoExtMp4
  208. _wantedExtMap[common.VideoExtMkv] = common.VideoExtMkv
  209. _wantedExtMap[common.VideoExtRmvb] = common.VideoExtRmvb
  210. _wantedExtMap[common.VideoExtIso] = common.VideoExtIso
  211. _wantedExtMap[common.VideoExtM2ts] = common.VideoExtM2ts
  212. for _, videoExt := range _customVideoExts {
  213. _wantedExtMap[videoExt] = videoExt
  214. }
  215. }
  216. fileExt := strings.ToLower(filepath.Ext(fileName))
  217. _, bFound := _wantedExtMap[fileExt]
  218. return bFound
  219. }
  220. func GetEpisodeKeyName(season, eps int, zerofill ...bool) string {
  221. if len(zerofill) < 1 || zerofill[0] == false {
  222. return "S" + strconv.Itoa(season) + "E" + strconv.Itoa(eps)
  223. } else {
  224. return fmt.Sprintf("S%02dE%02d", season, eps)
  225. }
  226. }
  227. // CopyFile copies a single file from src to dst
  228. func CopyFile(src, dst string) error {
  229. var err error
  230. var srcFd *os.File
  231. var dstFd *os.File
  232. var srcInfo os.FileInfo
  233. if srcFd, err = os.Open(src); err != nil {
  234. return err
  235. }
  236. defer func() {
  237. _ = srcFd.Close()
  238. }()
  239. if dstFd, err = os.Create(dst); err != nil {
  240. return err
  241. }
  242. defer func() {
  243. _ = dstFd.Close()
  244. }()
  245. if _, err = io.Copy(dstFd, srcFd); err != nil {
  246. return err
  247. }
  248. if srcInfo, err = os.Stat(src); err != nil {
  249. return err
  250. }
  251. return os.Chmod(dst, srcInfo.Mode())
  252. }
  253. // CopyDir copies a whole directory recursively
  254. func CopyDir(src string, dst string) error {
  255. var err error
  256. var fds []os.DirEntry
  257. var srcInfo os.FileInfo
  258. if srcInfo, err = os.Stat(src); err != nil {
  259. return err
  260. }
  261. if err = os.MkdirAll(dst, srcInfo.Mode()); err != nil {
  262. return err
  263. }
  264. if fds, err = os.ReadDir(src); err != nil {
  265. return err
  266. }
  267. for _, fd := range fds {
  268. srcfp := filepath.Join(src, fd.Name())
  269. dstfp := filepath.Join(dst, fd.Name())
  270. if fd.IsDir() {
  271. if err = CopyDir(srcfp, dstfp); err != nil {
  272. fmt.Println(err)
  273. }
  274. } else {
  275. if err = CopyFile(srcfp, dstfp); err != nil {
  276. fmt.Println(err)
  277. }
  278. }
  279. }
  280. return nil
  281. }
  282. // CloseChrome 强行结束没有关闭的 Chrome 进程
  283. func CloseChrome(l *logrus.Logger) {
  284. defer func() {
  285. l.Infoln("CloseChrome End")
  286. }()
  287. l.Infoln("CloseChrome Start...")
  288. cmdString := ""
  289. var command *exec.Cmd
  290. sysType := runtime.GOOS
  291. if sysType == "linux" {
  292. // LINUX系统
  293. cmdString = "pkill chrome"
  294. command = exec.Command("/bin/sh", "-c", cmdString)
  295. }
  296. if sysType == "windows" {
  297. // windows系统
  298. cmdString = "taskkill /F /im chrome.exe"
  299. command = exec.Command("cmd.exe", "/c", cmdString)
  300. }
  301. if sysType == "darwin" {
  302. // macOS
  303. // https://stackoverflow.com/questions/57079120/using-exec-command-in-golang-how-do-i-open-a-new-terminal-and-execute-a-command
  304. cmdString = `tell application "/Applications/Google Chrome.app" to quit`
  305. command = exec.Command("osascript", "-s", "h", "-e", cmdString)
  306. }
  307. if cmdString == "" || command == nil {
  308. l.Errorln("CloseChrome OS:", sysType)
  309. return
  310. }
  311. err := command.Run()
  312. if err != nil {
  313. l.Warningln("CloseChrome", err)
  314. }
  315. }
  316. // OSCheck 强制的系统支持检查
  317. func OSCheck() bool {
  318. sysType := runtime.GOOS
  319. if sysType == "linux" {
  320. return true
  321. }
  322. if sysType == "windows" {
  323. return true
  324. }
  325. if sysType == "darwin" {
  326. return true
  327. }
  328. return false
  329. }
  330. // FixWindowPathBackSlash 修复 Windows 反斜杠的梗
  331. func FixWindowPathBackSlash(path string) string {
  332. return strings.Replace(path, string(filepath.Separator), "/", -1)
  333. }
  334. func WriteStrings2File(desfilePath string, strings []string) error {
  335. dstFile, err := os.Create(desfilePath)
  336. if err != nil {
  337. return err
  338. }
  339. defer func() {
  340. _ = dstFile.Close()
  341. }()
  342. allString := ""
  343. for _, s := range strings {
  344. allString += s + "\r\n"
  345. }
  346. _, err = dstFile.WriteString(allString)
  347. if err != nil {
  348. return err
  349. }
  350. return nil
  351. }
  352. func TimeNumber2Time(inputTimeNumber float64) time.Time {
  353. newTime := time.Time{}.Add(time.Duration(inputTimeNumber * math.Pow10(9)))
  354. return newTime
  355. }
  356. func Time2SecondNumber(inTime time.Time) float64 {
  357. outSecond := 0.0
  358. outSecond += float64(inTime.Hour() * 60 * 60)
  359. outSecond += float64(inTime.Minute() * 60)
  360. outSecond += float64(inTime.Second())
  361. outSecond += float64(inTime.Nanosecond()) / 1000 / 1000 / 1000
  362. return outSecond
  363. }
  364. func Time2Duration(inTime time.Time) time.Duration {
  365. return time.Duration(Time2SecondNumber(inTime) * math.Pow10(9))
  366. }
  367. func Second2Time(sec int64) time.Time {
  368. return time.Unix(sec, 0)
  369. }
  370. // ReplaceSpecString 替换特殊的字符
  371. func ReplaceSpecString(inString string, rep string) string {
  372. return regex_things.RegMatchSpString.ReplaceAllString(inString, rep)
  373. }
  374. func Bool2Int(inBool bool) int {
  375. if inBool == true {
  376. return 1
  377. } else {
  378. return 0
  379. }
  380. }
  381. // Round 取整
  382. func Round(x float64) int64 {
  383. if x-float64(int64(x)) > 0 {
  384. return int64(x) + 1
  385. } else {
  386. return int64(x)
  387. }
  388. //return int64(math.Floor(x + 0.5))
  389. }
  390. // MakePowerOfTwo 2的整次幂数 buffer length is not a power of two
  391. func MakePowerOfTwo(x int64) int64 {
  392. power := math.Log2(float64(x))
  393. tmpRound := Round(power)
  394. return int64(math.Pow(2, float64(tmpRound)))
  395. }
  396. // MakeCeil10msMultipleFromFloat 将传入的秒,规整到 10ms 的倍数,返回依然是 秒,向上取整
  397. func MakeCeil10msMultipleFromFloat(input float64) float64 {
  398. const bb = 100
  399. // 先转到 10 ms 单位,比如传入是 1.912 - > 191.2
  400. t10ms := input * bb
  401. // 191.2 - > 192.0
  402. newT10ms := math.Ceil(t10ms)
  403. // 转换回来
  404. return newT10ms / bb
  405. }
  406. // MakeFloor10msMultipleFromFloat 将传入的秒,规整到 10ms 的倍数,返回依然是 秒,向下取整
  407. func MakeFloor10msMultipleFromFloat(input float64) float64 {
  408. const bb = 100
  409. // 先转到 10 ms 单位,比如传入是 1.912 - > 191.2
  410. t10ms := input * bb
  411. // 191.2 - > 191.0
  412. newT10ms := math.Floor(t10ms)
  413. // 转换回来
  414. return newT10ms / bb
  415. }
  416. // MakeCeil10msMultipleFromTime 向上取整,规整到 10ms 的倍数
  417. func MakeCeil10msMultipleFromTime(input time.Time) time.Time {
  418. nowTime := MakeCeil10msMultipleFromFloat(Time2SecondNumber(input))
  419. newTime := time.Time{}.Add(time.Duration(nowTime * math.Pow10(9)))
  420. return newTime
  421. }
  422. // MakeFloor10msMultipleFromTime 向下取整,规整到 10ms 的倍数
  423. func MakeFloor10msMultipleFromTime(input time.Time) time.Time {
  424. nowTime := MakeFloor10msMultipleFromFloat(Time2SecondNumber(input))
  425. newTime := time.Time{}.Add(time.Duration(nowTime * math.Pow10(9)))
  426. return newTime
  427. }
  428. // Time2SubTimeString 时间转字幕格式的时间字符串
  429. func Time2SubTimeString(inTime time.Time, timeFormat string) string {
  430. /*
  431. 这里进行时间转字符串的时候有一点比较特殊
  432. 正常来说输出的格式是类似 15:04:05.00
  433. 那么有个问题,字幕的时间格式是 0:00:12.00, 小时,是个数,除非有跨度到 20 小时的视频,不然小时就应该是个数
  434. 这就需要一个额外的函数去处理这些情况
  435. */
  436. outTimeString := inTime.Format(timeFormat)
  437. if inTime.Hour() > 9 {
  438. // 小时,两位数
  439. return outTimeString
  440. } else {
  441. // 小时,一位数
  442. items := strings.SplitN(outTimeString, ":", -1)
  443. if len(items) == 3 {
  444. outTimeString = strings.Replace(outTimeString, items[0], fmt.Sprintf("%d", inTime.Hour()), 1)
  445. return outTimeString
  446. }
  447. return outTimeString
  448. }
  449. }
  450. // IsEqual 比较 float64
  451. func IsEqual(f1, f2 float64) bool {
  452. const MIN = 0.000001
  453. if f1 > f2 {
  454. return math.Dim(f1, f2) < MIN
  455. } else {
  456. return math.Dim(f2, f1) < MIN
  457. }
  458. }
  459. // ParseTime 解析字幕时间字符串,这里可能小数点后面有 2-4 位
  460. func ParseTime(inTime string) (time.Time, error) {
  461. parseTime, err := time.Parse(common.TimeFormatPoint2, inTime)
  462. if err != nil {
  463. parseTime, err = time.Parse(common.TimeFormatPoint3, inTime)
  464. if err != nil {
  465. parseTime, err = time.Parse(common.TimeFormatPoint4, inTime)
  466. }
  467. }
  468. return parseTime, err
  469. }
  470. // GetFileSHA1 获取文件的 SHA1 值
  471. func GetFileSHA1(srcFileFPath string) (string, error) {
  472. infile, err := os.Open(srcFileFPath)
  473. if err != nil {
  474. return "", err
  475. }
  476. defer func() {
  477. _ = infile.Close()
  478. }()
  479. h := sha1.New()
  480. _, err = io.Copy(h, infile)
  481. if err != nil {
  482. return "", err
  483. }
  484. return hex.EncodeToString(h.Sum(nil)), nil
  485. }
  486. // WriteFile 写文件
  487. func WriteFile(desFileFPath string, bytes []byte) error {
  488. var err error
  489. nowDesPath := desFileFPath
  490. if filepath.IsAbs(nowDesPath) == false {
  491. nowDesPath, err = filepath.Abs(nowDesPath)
  492. if err != nil {
  493. return err
  494. }
  495. }
  496. // 创建对应的目录
  497. nowDirPath := filepath.Dir(nowDesPath)
  498. err = os.MkdirAll(nowDirPath, os.ModePerm)
  499. if err != nil {
  500. return err
  501. }
  502. file, err := os.Create(nowDesPath)
  503. if err != nil {
  504. return err
  505. }
  506. defer func() {
  507. _ = file.Close()
  508. }()
  509. _, err = file.Write(bytes)
  510. if err != nil {
  511. return err
  512. }
  513. return nil
  514. }
  515. // GetNowTimeString 获取当前的时间,没有秒
  516. func GetNowTimeString() (string, int, int, int) {
  517. nowTime := time.Now()
  518. addString := fmt.Sprintf("%d-%d-%d", nowTime.Hour(), nowTime.Minute(), nowTime.Nanosecond())
  519. return addString, nowTime.Hour(), nowTime.Minute(), nowTime.Nanosecond()
  520. }
  521. // GenerateAccessToken 生成随机的 AccessToken
  522. func GenerateAccessToken() string {
  523. u4 := uuid.New()
  524. return u4.String()
  525. }
  526. func Get2UUID() string {
  527. u4 := uuid.New()
  528. u5 := uuid.New()
  529. return u4.String() + u5.String()
  530. }
  531. func UrlJoin(hostUrl, subUrl string) (string, error) {
  532. u, err := url.Parse(hostUrl)
  533. if err != nil {
  534. return "", err
  535. }
  536. u.Path = path.Join(u.Path, subUrl)
  537. return u.String(), nil
  538. }
  539. // GetFileSHA1String 获取文件的 SHA1 字符串
  540. func GetFileSHA1String(fileFPath string) (string, error) {
  541. h := sha1.New()
  542. fp, err := os.Open(fileFPath)
  543. if err != nil {
  544. return "", err
  545. }
  546. defer func() {
  547. _ = fp.Close()
  548. }()
  549. partAll, err := io.ReadAll(fp)
  550. if err != nil {
  551. return "", err
  552. }
  553. h.Write(partAll)
  554. hashBytes := h.Sum(nil)
  555. return fmt.Sprintf("%x", md5.Sum(hashBytes)), nil
  556. }
  557. // GetFileSHA256String 获取文件的 SHA256 字符串
  558. func GetFileSHA256String(fileFPath string) (string, error) {
  559. fp, err := os.Open(fileFPath)
  560. if err != nil {
  561. return "", err
  562. }
  563. defer func() {
  564. _ = fp.Close()
  565. }()
  566. partAll, err := io.ReadAll(fp)
  567. if err != nil {
  568. return "", err
  569. }
  570. return fmt.Sprintf("%x", sha256.Sum256(partAll)), nil
  571. }
  572. func GetRestOfDaySec() time.Duration {
  573. nowTime := time.Now()
  574. todayLast := nowTime.Format("2006-01-02") + " 23:59:59"
  575. todayLastTime, _ := time.ParseInLocation("2006-01-02 15:04:05", todayLast, time.Local)
  576. // 今天剩余的时间(s)
  577. restOfDaySec := time.Duration(todayLastTime.Unix()-time.Now().Local().Unix()) * time.Second
  578. return restOfDaySec
  579. }
  580. // IntToBytes 整形转换成字节
  581. func IntToBytes(n int) ([]byte, error) {
  582. x := int32(n)
  583. bytesBuffer := bytes.NewBuffer([]byte{})
  584. err := binary.Write(bytesBuffer, binary.BigEndian, x)
  585. if err != nil {
  586. return nil, err
  587. }
  588. return bytesBuffer.Bytes(), nil
  589. }
  590. // BytesToInt 字节转换成整形
  591. func BytesToInt(b []byte) (int, error) {
  592. bytesBuffer := bytes.NewBuffer(b)
  593. var x int32
  594. err := binary.Read(bytesBuffer, binary.BigEndian, &x)
  595. if err != nil {
  596. return 0, err
  597. }
  598. return int(x), nil
  599. }
  600. func PrintPanicStack(log *logrus.Logger) {
  601. var buf [4096]byte
  602. n := runtime.Stack(buf[:], false)
  603. log.Errorln(fmt.Sprintf("%s", buf[:n]))
  604. }
  605. var (
  606. _wantedExtMap = make(map[string]string) // 人工确认的需要监控的视频后缀名
  607. _defExtMap = make(map[string]string) // 内置支持的视频后缀名列表
  608. _customVideoExts = make([]string, 0) // 用户额外自定义的视频后缀名列表
  609. )