util.go 20 KB

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