-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathstring.go
689 lines (599 loc) · 16.5 KB
/
string.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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
/*
* Copyright(c) 2021 Lianjia, Inc. All Rights Reserved
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package mask
import (
"bytes"
"fmt"
"math"
"regexp"
"strconv"
"strings"
"time"
"d18n/common"
"github.com/bykof/gostradamus"
"github.com/dnnrly/abbreviate/data"
"github.com/dnnrly/abbreviate/domain"
)
// Smoke replace every character with mask
// args 0: value
// args 1: replacement
func Smoke(args ...interface{}) (ret string, err error) {
if len(args) < 2 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
return strings.Repeat(fmt.Sprint(args[1]), len(fmt.Sprint(args[0]))), err
}
// SmokeLeft replace left n characters
// args 0: value
// args 1: left n character
// args 2: replacement
func SmokeLeft(args ...interface{}) (ret string, err error) {
if len(args) < 3 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
if n < 0 {
return ret, fmt.Errorf(common.WrongLargeThan0)
}
ret = fmt.Sprint(args[0])
runes := []rune(ret)
l := len(runes)
src := fmt.Sprint(args[2])
if n < l {
ret = strings.Repeat(src, n) + string(runes[n:l])
} else {
ret = strings.Repeat(src, l)
}
return ret, err
}
// ReserveLeft reserve left n characters
// args 0: value
// args 1: left n character
// args 2: strings.Repeat(src string)
func ReserveLeft(args ...interface{}) (ret string, err error) {
if len(args) < 3 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
if n < 0 {
return ret, fmt.Errorf(common.WrongLargeThan0)
}
ret = fmt.Sprint(args[0])
runes := []rune(ret)
l := len(runes)
src := fmt.Sprint(args[2])
if n < l {
ret = string(runes[:n]) + strings.Repeat(src, l-n)
}
return ret, err
}
// SmokeRight smoke right n characters
// args 0: value
// args 1: right n character
// args 2: strings.Repeat(src string)
func SmokeRight(args ...interface{}) (ret string, err error) {
if len(args) < 3 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
if n < 0 {
return ret, fmt.Errorf(common.WrongLargeThan0)
}
ret = fmt.Sprint(args[0])
l := len(ret)
src := fmt.Sprint(args[2])
if n < l {
ret = ret[:l-n] + strings.Repeat(src, n)
} else {
ret = strings.Repeat(src, l)
}
return ret, err
}
// ReserveRight reserve right n characters
// args 0: value
// args 1: right n character
// args 2: strings.Repeat(src string)
func ReserveRight(args ...interface{}) (ret string, err error) {
if len(args) < 3 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
if n < 0 {
return ret, fmt.Errorf(common.WrongLargeThan0)
}
ret = fmt.Sprint(args[0])
runes := []rune(ret)
l := len(runes)
src := fmt.Sprint(args[2])
if n < l {
ret = strings.Repeat(src, l-n) + string(runes[l-n:])
}
return ret, err
}
// ReserveRight smoke margin n characters
// args 0: value
// args 1: margin n character
// args 2: strings.Repeat(src string)
func SmokeMargin(args ...interface{}) (ret string, err error) {
if len(args) < 3 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
if n < 0 {
return ret, fmt.Errorf(common.WrongLargeThan0)
}
ret = fmt.Sprint(args[0])
runes := []rune(ret)
l := len(runes)
src := fmt.Sprint(args[2])
if 2*n < l {
ret = strings.Repeat(src, n) + string(runes[n:l-n]) + strings.Repeat(src, n)
} else {
ret = strings.Repeat(src, l)
}
return ret, err
}
// ReserveMargin reserve margin n characters
// args 0: value
// args 1: margin n character
// args 2: strings.Repeat(src string)
func ReserveMargin(args ...interface{}) (ret string, err error) {
if len(args) < 3 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
if n < 0 {
return ret, fmt.Errorf(common.WrongLargeThan0)
}
ret = fmt.Sprint(args[0])
runes := []rune(ret)
l := len(runes)
src := fmt.Sprint(args[2])
if 2*n < l {
ret = string(runes[:n]) + strings.Repeat(src, l-2*n) + string(runes[l-n:])
} else {
ret = strings.Repeat(src, l)
}
return ret, err
}
// SmokeOuter mysql mask_outer
// args 0: value
// args 1, 2: left, right int
// args 3: strings.Repeat(src string)
func SmokeOuter(args ...interface{}) (ret string, err error) {
if len(args) < 4 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
left, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
right, err := strconv.Atoi(fmt.Sprint(args[2]))
if err != nil {
return ret, err
}
if left < 0 || right < 0 {
return ret, fmt.Errorf(common.WrongLargeThan0)
}
ret = fmt.Sprint(fmt.Sprint(args[0]))
runes := []rune(ret)
l := len(runes)
src := fmt.Sprint(args[3])
if (left + right) > l {
return strings.Repeat(src, l), err
} else {
ret = strings.Repeat(src, left) + string(runes[left:l-right]) + strings.Repeat(src, right)
}
return ret, err
}
// ReserveOuter
func ReserveOuter(args ...interface{}) (ret string, err error) {
return SmokeInner(args...)
}
// SmokeInner mysql mask_inner
// args 0: value
// args 1, 2: left, right int
// args 3: strings.Repeat(src string)
func SmokeInner(args ...interface{}) (ret string, err error) {
if len(args) < 4 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
left, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
right, err := strconv.Atoi(fmt.Sprint(args[2]))
if err != nil {
return ret, err
}
if left < 0 || right < 0 {
return ret, fmt.Errorf(common.WrongLargeThan0)
}
ret = fmt.Sprint(args[0])
runes := []rune(ret)
l := len(runes)
src := fmt.Sprint(args[3])
if (left + right) > l {
return strings.Repeat(src, l), err
} else {
ret = string(runes[:left]) + strings.Repeat(src, l-right-left) + string(runes[l-right:])
}
return ret, err
}
// ReserveInner
func ReserveInner(args ...interface{}) (ret string, err error) {
return SmokeOuter(args...)
}
// Replace strings.Replace
// args 0-3: strings.Replace(s, old, new string, n int)
func Replace(args ...interface{}) (ret string, err error) {
if len(args) < 3 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
var n int = -1
if len(args) > 3 {
n, err = strconv.Atoi(fmt.Sprint(args[3]))
if err != nil {
return ret, err
}
}
return strings.Replace(fmt.Sprint(args[0]), fmt.Sprint(args[1]), fmt.Sprint(args[2]), n), err
}
// RegexpReplace regexp.ReplaceAllString
// args 1: regexp.Compile(expr string)
// args 0, 2: regexp.ReplaceAllString(src, repl string)
func RegexpReplace(args ...interface{}) (ret string, err error) {
if len(args) < 3 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
re, err := regexp.Compile(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
ret = re.ReplaceAllString(fmt.Sprint(args[0]), fmt.Sprint(args[2]))
return ret, err
}
// RegexpRandomReplace through regular random data relpace
// args 0: value
// args 1: regexp.Compile(expr string)
// args 2: max uint Maximum number of instances to generate for unbounded repeat expressions (e.g., ".*" and "{1,}")
// args 3: min uint Minimum number of instances to generate for unbounded repeat expressions (e.g., ".*")
func RegexpRandomReplace(args ...interface{}) (ret string, err error) {
if len(args) < 4 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
re, err := regexp.Compile(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
min, err := strconv.ParseUint(fmt.Sprint(args[2]), 10, 32)
if err != nil {
return ret, fmt.Errorf(common.WrongArgValue)
}
max, err := strconv.ParseUint(fmt.Sprint(args[3]), 10, 32)
if err != nil {
return ret, fmt.Errorf(common.WrongArgValue)
}
substitute, err := Fake("regexp-rand", fmt.Sprint(args[1]), min, max)
if err != nil {
return ret, err
}
ret = re.ReplaceAllString(fmt.Sprint(args[0]), substitute)
return ret, err
}
// Reverse string reverse
func Reverse(args ...interface{}) (ret string, err error) {
if len(args) < 1 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
ret = fmt.Sprint(args[0])
runes := []rune(ret)
for from, to := 0, len(runes)-1; from < to; from, to = from+1, to-1 {
runes[from], runes[to] = runes[to], runes[from]
}
ret = string(runes)
return ret, err
}
// ToUpper strings.ToUpper
func ToUpper(args ...interface{}) (ret string, err error) {
if len(args) < 1 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
return strings.ToUpper(fmt.Sprint(args[0])), err
}
// ToLower strings.ToLower
func ToLower(args ...interface{}) (ret string, err error) {
if len(args) < 1 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
return strings.ToLower(fmt.Sprint(args[0])), err
}
// Const replace string with const
// args 0: value
// args 1: const mask string
func Const(args ...interface{}) (ret string, err error) {
if len(args) < 2 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
return fmt.Sprint(args[1]), err
}
// Number2Const replace all number to 9
// args 0: value
// args 1: const mask string
func Number2Const(args ...interface{}) (ret string, err error) {
if len(args) < 1 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
var c = "9"
if len(args) > 1 {
c = fmt.Sprint(args[1])
}
re := regexp.MustCompile(`[0-9]`)
return re.ReplaceAllString(fmt.Sprint(args[0]), c), err
}
// Char2Const replace [a-zA-Z] to N
// args 0: value
// args 1: const mask string
func Char2Const(args ...interface{}) (ret string, err error) {
if len(args) < 1 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
var c = "N"
if len(args) > 1 {
c = fmt.Sprint(args[1])
}
re := regexp.MustCompile(`[a-zA-Z]`)
return re.ReplaceAllString(fmt.Sprint(args[0]), c), err
}
// SmokeCharLeft mask left before specify char
// e.g., ***@example.com
// arg0 value
// arg1 char like "@" 、"&"、 "."
// arg2 replace char like '*','#'
func SmokeCharLeft(args ...interface{}) (ret string, err error) {
if len(args) < 3 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n := strings.IndexAny(fmt.Sprint(args[0]), fmt.Sprint(args[1]))
if n > 0 {
return string(bytes.Repeat([]byte(fmt.Sprint(args[2])), n)) + fmt.Sprint(args[0])[n:], err
} else {
return fmt.Sprint(args[0]), err
}
}
// SmokeCharRight mask right after specify char
// e.g., user@****
// arg0 value
// arg1 char like "@" 、"&"、 "."
// arg2 replace char like '*','#'
func SmokeCharRight(args ...interface{}) (ret string, err error) {
if len(args) < 3 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n := strings.IndexAny(fmt.Sprint(args[0]), fmt.Sprint(args[1]))
if n > -1 && n < len(fmt.Sprint(args[0])) {
return fmt.Sprint(args[0])[:n+1] + string(bytes.Repeat([]byte(fmt.Sprint(args[2])), len(fmt.Sprint(args[0]))-n-1)), err
} else {
return fmt.Sprint(args[0]), err
}
}
// https://help.aliyun.com/document_detail/150101.html?spm=a2c4g.11186623.6.595.243a5a787EiWOe
// NumberFloor...
// eg -12.78->-12、4856->4000
// arg1: value
// arg2: floor num
func NumberFloor(args ...interface{}) (ret string, err error) {
if len(args) < 2 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
value, err := strconv.ParseFloat(fmt.Sprint(args[0]), 64)
if err != nil {
return "", err
}
n, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
if value > 0 {
value = math.Floor(value)
} else {
value = math.Ceil(value)
}
ret = strconv.FormatFloat(value, 'f', -1, 64)
if n > len(ret)-1 {
return "0", err
} else {
return ret[:len(ret)-n] + string(bytes.Repeat([]byte("0"), n)), err
}
}
// DateRound ...
// arg1: date
// arg2: dateFormat,
// accuracy: accuracy second, minute, hour(default), day, month, year
// e.g., 2021-07-23 17:00:00、2021-01-01 00:00:00
// https://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html#rfc822timezone
func DateRound(args ...interface{}) (ret string, err error) {
var accuracy time.Duration
if len(args) < 2 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
dateFormat := "YYYY-MM-DD HH:mm:ss"
if len(args) > 2 {
dateFormat = fmt.Sprint(args[2])
}
formatDate, err := gostradamus.Parse(fmt.Sprint(args[0]), dateFormat)
if err != nil {
return ret, err
}
switch fmt.Sprint(args[1]) {
case "second":
accuracy = time.Second
case "minute":
accuracy = time.Minute
case "hour":
accuracy = time.Hour
case "day":
accuracy = time.Hour * 24
case "month":
return gostradamus.NewDateTime(formatDate.Year(), formatDate.Month(), 1, 0, 0, 0, 0, formatDate.Timezone()).Format(fmt.Sprint(args[2])), err
case "year":
return gostradamus.NewDateTime(formatDate.Year(), 1, 1, 0, 0, 0, 0, formatDate.Timezone()).Format(fmt.Sprint(args[2])), err
default:
accuracy = time.Hour
}
return gostradamus.DateTimeFromTime(formatDate.Time().Round(accuracy)).Format(dateFormat), err
}
// DateFormat convert date format
// arg1: date
// arg2: old date format,
// arg2: new date format,
func DateFormat(args ...interface{}) (ret string, err error) {
if len(args) < 2 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
newDateFormat := "YYYY-MM-DD HH:mm:ss"
if len(args) > 2 {
newDateFormat = fmt.Sprint(args[2])
}
formatDate, err := gostradamus.Parse(fmt.Sprint(args[0]), fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
return gostradamus.DateTimeFromTime(formatDate.Time()).Format(newDateFormat), err
}
// LoopMoveLeft ...
// e.g., abcdefg left move 3 defgabc
// arg1: value
// arg2: index
func LoopMoveLeft(args ...interface{}) (ret string, err error) {
if len(args) < 2 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
n = n % len(fmt.Sprint(args[0]))
return fmt.Sprint(args[0])[n:] + fmt.Sprint(args[0])[:n], err
}
// LoopMoveRight ...
// e.g., abcdefg left move 3 efgabcd
// arg1: value
// arg2: index
func LoopMoveRight(args ...interface{}) (ret string, err error) {
if len(args) < 2 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
valueLength := len(fmt.Sprint(args[0]))
n = valueLength - n%valueLength
return fmt.Sprint(args[0])[n:] + fmt.Sprint(args[0])[:n], err
}
// TruncateLeft truncate left n characters
// arg 0: value
// arg 1: index
func TruncateLeft(args ...interface{}) (ret string, err error) {
if len(args) < 2 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
runes := []rune(fmt.Sprint(args[0]))
if len(runes) <= n {
return string(runes), nil
} else {
return string(runes[len(runes)-n:]), nil
}
}
func TruncateRight(args ...interface{}) (ret string, err error) {
if len(args) < 2 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
n, err := strconv.Atoi(fmt.Sprint(args[1]))
if err != nil {
return ret, err
}
runes := []rune(fmt.Sprint(args[0]))
if len(runes) <= n {
return string(runes), nil
} else {
return string(runes[:n]), nil
}
}
// Abbreviate english words abbreviate
// https://github.com/dnnrly/abbreviate
// strategy-limited => stg-ltd
func Abbreviate(args ...interface{}) (ret string, err error) {
if len(args) < 1 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
value := fmt.Sprint(args[0])
matcher := data.Abbreviations["en-us"]["common"]
ret = domain.AsSeparated(matcher, value, "-", 1, true)
return ret, err
}
// Initialism english words initialism
// hello world => hw
func Initialism(args ...interface{}) (ret string, err error) {
if len(args) < 1 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
var b bytes.Buffer
for _, s := range strings.Fields(fmt.Sprint(args[0])) {
b.WriteRune([]rune(s)[0])
}
return b.String(), err
}
// Numeronym a number-based word.
// internationalization => i8n
func Numeronym(args ...interface{}) (ret string, err error) {
if len(args) < 1 {
return ret, fmt.Errorf(common.WrongArgsCount)
}
ret = fmt.Sprint(args[0])
for i, s := range strings.Fields(ret) {
runes := []rune(s)
l := len(runes)
if l > 2 {
if i == 0 {
ret = fmt.Sprintf("%c%d%c", runes[0], l-2, runes[l-1])
} else {
ret += fmt.Sprintf(" %c%d%c", runes[0], l-2, runes[l-1])
}
}
}
return ret, err
}