-
Notifications
You must be signed in to change notification settings - Fork 0
/
Utils.go
510 lines (398 loc) · 10.5 KB
/
Utils.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
package Utils
import (
"crypto/md5"
"crypto/rand"
"encoding/base64"
"encoding/hex"
"errors"
"io"
"io/ioutil"
"log"
"os"
"os/user"
"path/filepath"
"strings"
"time"
"github.com/shamsher31/goimgtype"
)
//
func PathIsExist(filePath string) bool {
_, err := os.Stat(filePath)
if err != nil {
if os.IsNotExist(err) {
return false
}
}
return true
}
func GetMd5String(s string) string {
h := md5.New()
h.Write([]byte(s))
return hex.EncodeToString(h.Sum(nil))
}
func GUID() string {
b := make([]byte, 48)
if _, err := io.ReadFull(rand.Reader, b); err != nil {
return ""
}
return GetMd5String(base64.URLEncoding.EncodeToString(b))
}
func IsGuid(id string) bool {
if id == "" {
return false
}
if len(id) != 32 {
return false
}
dat := []byte(id)
isBase64 := true
for _, v := range dat {
if v >= 48 && v <= 57 || v >= 65 && v <= 70 || v >= 97 && v <= 102 {
} else {
isBase64 = false
break
}
}
return isBase64
}
func CurrentTime() string {
t := time.Now()
str := t.Format("2006-01-02 15:04:05")
return str
}
func PathIsMarkdown(filePath string) bool {
if filePath == "" {
return false
}
ext := filepath.Ext(filePath)
if ext == ".md" || ext == ".markdown" || ext == ".mdown" || ext == ".mmd" {
return true
}
return false
}
func MakeFolder(sPath string) (bool, error) {
if sPath == "" {
return false, errors.New("MakeFolder: sPath is empty")
}
sFolderPath, errFolderPath := MakePath(sPath)
if errFolderPath != nil {
return false, errFolderPath
}
errFolderPath = os.Mkdir(sFolderPath, os.ModePerm)
if errFolderPath != nil {
return false, errFolderPath
}
return true, nil
}
func SaveBase64AsImage(imageContent, targetPath string) (bool, error) {
if imageContent == "" {
return false, errors.New("SaveBase64AsImage : image content is empty")
}
if targetPath == "" {
return false, errors.New("SaveBase64AsImage : target file path is empty")
}
if PathIsExist(targetPath) {
bDelete := DeleteFile(targetPath)
if bDelete == false {
return false, errors.New("SaveBase64AsImage : target Path already exist and cannot delete")
}
}
if strings.Contains(imageContent, "data:") == false || strings.Contains(imageContent, ";base64,") == false {
return false, errors.New("SaveBase64AsImage : Image Content Format Error")
}
var base64Index = strings.Index(imageContent, ";base64,")
var base64Image = imageContent[base64Index+8:]
decodedImage, errDecode := base64.StdEncoding.DecodeString(base64Image)
if errDecode != nil {
return false, errors.New("SaveBase64AsImage : Cannot Decode Base64 Image")
}
err2 := ioutil.WriteFile(targetPath, decodedImage, 0666)
if err2 != nil {
return false, errors.New("SaveBase64AsImage : Cannot Save image")
}
return true, nil
}
func ReadImageAsBase64(imagePath string) (string, error) {
var retImage string
retImage = ""
image, errRead := ioutil.ReadFile(imagePath)
if errRead != nil {
return "", errors.New("ReadImageAsBase64: Read Fail")
}
imageBase64 := base64.StdEncoding.EncodeToString(image)
datatype, err2 := imgtype.Get(imagePath)
if err2 != nil {
return "", errors.New("ReadImageAsBase64: Cannot get image type")
} else {
retImage = "data:" + datatype + ";base64," + imageBase64
}
return retImage, nil
}
func PathIsImage(filePath string) bool {
if filePath == "" {
return false
}
_, err2 := imgtype.Get(filePath)
if err2 != nil {
return false
}
return true
}
func GetImageType(base64Image string) (string, error) {
if base64Image == "" {
return "", errors.New("Get Image Type: base64Image is empty")
}
var datatypeParts = strings.Split(base64Image, ";") //Get data:image/png
if len(datatypeParts) > 1 {
var datatypePart = datatypeParts[0]
var datatypes = strings.Split(datatypePart, ":") //Get image/png
if len(datatypes) == 2 {
var datatype = datatypes[1]
var subTypes = strings.Split(datatype, "/") //Get png
if len(subTypes) == 2 {
return subTypes[1], nil
} else {
return "", errors.New("Get Image Type : Cannot get image type")
}
} else {
return "", errors.New("Get Image Type : Cannot get image type")
}
}
return "", errors.New("Get Image Type : Cannot get image type")
}
func MakePath(sPath string) (string, error) {
sfolder, sfile := filepath.Split(sPath)
if sfolder == "" || sfile == "" {
return "", errors.New("MakePath: folder or file name is empty folder " + sfolder + " file " + sfile)
}
sfolder = filepath.Clean(sfolder)
if !PathIsExist(sfolder) {
os.MkdirAll(sfolder, os.ModePerm)
}
return filepath.Join(sfolder, sfile), nil
}
func MakeSoftLink4Folder(srcFolder, linkFolder string) (bool, error) {
srcExist := PathIsExist(srcFolder)
if !srcExist {
var errMsg = "Make Soft Link 4 Folder: SrcFolder Not Exist " + srcFolder
Logger.Println(errMsg)
return false, errors.New(errMsg)
}
targetExist := PathIsExist(linkFolder)
if targetExist {
var errMsg = "Make Soft Link 4 Folder:linkFolder Already Exist " + linkFolder
Logger.Println(errMsg)
return false, errors.New(errMsg)
}
errLink := os.Symlink(srcFolder, linkFolder)
if errLink != nil {
Logger.Println("MakeSoftLink: " + errLink.Error())
return false, errLink
}
return true, nil
}
func CopyFile(src, dst string) (int64, error) {
sourceFileStat, err := os.Stat(src)
if err != nil {
return 0, err
}
if !sourceFileStat.Mode().IsRegular() {
var errMsg = "CopyFile " + src + "is not a regular file"
return 0, errors.New(errMsg)
}
source, err := os.Open(src)
if err != nil {
return 0, err
}
defer source.Close()
destination, err := os.Create(dst)
if err != nil {
return 0, err
}
defer destination.Close()
nBytes, err := io.Copy(destination, source)
return nBytes, err
}
func MoveFile(src, dst string) (int64, error) {
iCopy, errCopy := CopyFile(src, dst)
if errCopy != nil {
return 0, errCopy
}
errRemove := os.Remove(src)
if errRemove != nil {
return 0, errRemove
}
return iCopy, nil
}
func DeleteFile(filePath string) bool {
if PathIsExist(filePath) == false {
return false
}
errRemove := os.Remove(filePath)
if errRemove != nil {
return false
}
return true
}
func CreateFile(filePath string) bool {
if PathIsExist(filePath) == false {
filePath, _ = MakePath(filePath)
}
file2, err := os.OpenFile(filePath, os.O_RDWR|os.O_CREATE, 0766)
if err != nil {
Logger.Println(err.Error())
return false
}
file2.Close()
return true
}
func GetImageWithSameName(filePath string) (string, error) {
if PathIsExist(filePath) == false {
return "", errors.New("GetImageWithSameName: filePath not exist " + filePath)
}
sFolder, sFile := filepath.Split(filePath)
sExt := filepath.Ext(filePath)
sShortName := strings.Replace(sFile, sExt, "", -1)
files, errReadDir := ioutil.ReadDir(sFolder)
if errReadDir != nil {
return "", errReadDir
}
for _, file := range files {
var fName = file.Name()
var fPath = filepath.Join(sFolder, fName)
var fExt = filepath.Ext(fPath)
if PathIsImage(fPath) {
fShortName := strings.Replace(fName, fExt, "", -1)
if sShortName == fShortName {
return fPath, nil
}
}
}
return "", errors.New("GetImageWithSameName: not find image with same name of " + filePath)
}
func GetImageWithSameName2(folderPath, fileName string) (string, error) {
if PathIsExist(folderPath) == false {
return "", errors.New("GetImageWithSameName: folderPath not exist " + folderPath)
}
files, errReadDir := ioutil.ReadDir(folderPath)
if errReadDir != nil {
return "", errReadDir
}
var fPath string
for _, file := range files {
var fName = file.Name()
fPath = filepath.Join(folderPath, fName)
var fExt = filepath.Ext(fPath)
if PathIsImage(fPath) {
fShortName := strings.Replace(fName, fExt, "", -1)
if fileName == fShortName {
return fPath, nil
}
}
}
return "", errors.New("GetImageWithSameName: not find image with same name of " + fileName + " in " + folderPath)
}
func GetMetaFilePathWithSameName(filePath string) (string, error) {
if PathIsExist(filePath) == false {
return "", errors.New("GetMetaFilePathWithSameName: filePath not exist " + filePath)
}
sFolder, sFile := filepath.Split(filePath)
sExt := filepath.Ext(filePath)
sShortName := strings.Replace(sFile, sExt, "", -1)
files, errReadDir := ioutil.ReadDir(sFolder)
if errReadDir != nil {
return "", errReadDir
}
for _, file := range files {
var fName = file.Name()
var fPath = filepath.Join(sFolder, fName)
if strings.HasSuffix(fPath, ".mta.json") {
fShortName := strings.Replace(fName, ".mta.json", "", -1)
if sShortName == fShortName {
return fPath, nil
}
}
}
return "", errors.New("GetImageWithSameName: not find image with same name of " + filePath)
}
func GetImageWithSameTitle(fileFolder, fileTitle string) (string, error) {
if PathIsExist(fileFolder) == false {
return "", errors.New("GetImageWithSameTitle: File Folder not exist " + fileFolder)
}
files, errReadDir := ioutil.ReadDir(fileFolder)
if errReadDir != nil {
return "", errReadDir
}
for _, file := range files {
var fName = file.Name()
var fPath = filepath.Join(fileFolder, fName)
var fExt = filepath.Ext(fPath)
if PathIsImage(fPath) {
fShortName := strings.Replace(fName, fExt, "", -1)
if fileTitle == fShortName {
return fPath, nil
}
}
}
return "", errors.New("GetImageWithSameTitle: not find image with same name of " + fileTitle)
}
func CurrentUser() string {
u, err := user.Current()
if err != nil {
return "Chao"
}
return u.Username
}
const MAXTITLEIMAGESIZE int64 = 30720
func ImageTooBig(titleImagePath string) (bool, error) {
fileInfoTitleImage, errFileInfoTitleImage := os.Stat(titleImagePath)
if errFileInfoTitleImage != nil {
var errMsg = "Utils.ImageTooBig: Cannot get file size of titleImage"
Logger.Println(errMsg)
return false, errors.New(errMsg)
}
titleImageSize := fileInfoTitleImage.Size()
if titleImageSize > MAXTITLEIMAGESIZE {
return true, nil
}
return false, nil
}
var Logger *log.Logger
func InitLogger() {
file, err := os.Create("ipsd.log")
if err != nil {
log.Fatalln("fail to create test.log file!")
}
Logger = log.New(file, "", log.Llongfile)
}
func PathIsFile(filePath string) bool {
if filePath == "" {
return false
}
if PathIsExist(filePath) == false {
return false
}
f, err := os.Stat(filePath)
if err != nil {
Logger.Println(err.Error())
return false
}
if f.IsDir() == false {
return true
}
return false
}
func PathIsDir(filePath string) bool {
if filePath == "" {
return false
}
if PathIsExist(filePath) == false {
return false
}
f, err := os.Stat(filePath)
if err != nil {
Logger.Println(err.Error())
return false
}
return f.IsDir()
}