Skip to content

Commit 1c9825b

Browse files
Added doc and extra functions
1 parent 06ca7f4 commit 1c9825b

File tree

4 files changed

+119
-4
lines changed

4 files changed

+119
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
| Release | Date | Comments |
2+
|---------|------------|-----------------------------------------------------------------------------|
3+
| 1.1.0 | 2024.04.10 | Added doc, CHANGELOG, extra functions in {encodeDecodePassword,terminal}.go |
4+
| 1.0.0 | 2024.04.10 | Initial version. |
5+
6+
7+
8+

README.md

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# helperFunctions
2+
Miscellaneous helper functions
3+
___
4+
5+
This package provides functions that I have been using all over my various tools but the obvious struck: instead of ducplicating code on my filesystem, I should have a single source of truth.
6+
7+
## Overview
8+
9+
This package is currently divided in 3 files; if the scope of the project expands (and I expect it to expand, at some point), we might be talking about sub-packages here.
10+
11+
For now, we have 3 files, with a specific area of responsibility:
12+
13+
| File | Area / coverage |
14+
|-------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
15+
| prompt4Type.go | Returns a value of a given type (string, bool, int, etc), with a prompt<br>This might seem useless, but I've needed something like that many times |
16+
| terminal.go | Terminal-related functions, such as colouring output, getting terminal size (WxH), etc |
17+
| encodeDecodePassword.go | Functions related to encoding/decoding strings, prompting for (non-echoed) passwords, etc) |
18+
| misc.go | Various minor functions |
19+
20+
This is basic, for now. I really intend on expanding on this package, and eventually have it documented on pkg.go.dev/
21+
22+
## Installation
23+
A simple `go get github.com/jeanfrancoisgratton/functionHelpers` and we're done.
24+
25+
## Usage, per file/package
26+
(it is "per file" for now, as I'm not dividing it in sub-packages)
27+
28+
### FILE: misc.go
29+
Two functions, SI(), and ReverseString().
30+
31+
SI came from a need to have comma-separated number out of a number that wasn't.
32+
33+
For instance, you have the number `123456789`. In a comma-separated format (SI-notation, SI for "Système International"); it becomes, in a string: `123,456,789`
34+
35+
You input a uint64 number, it comes back as a SI-formatted string.
36+
37+
I'm aware that having only a uint64 entrant is kind of a limitation; it'll be worked on.
38+
39+
About ReverseString(), the name says it all:
40+
41+
You input a string ("abcdef"), it returns its reverse ("fedcba").
42+
43+
44+
### FILE: prompt4Type.go
45+
Many functions there, all following the same pattern...
46+
47+
The functions:
48+
49+
GetStringValFromPrompt()<br>
50+
GetIntValFromPrompt()<br>
51+
GetBoolValFromPrompt()<br>
52+
GetStringSliceFromPrompt()<br>
53+
54+
The structure is intuitive: Get<DATATYPE><SCALAR/SLICE>FromPrompt()
55+
56+
DATATYPE is either String, Int, Bool... for now
57+
58+
SCALAR/SLICE is either Val (Scalar, single value) or Slice. This affects the return data type.
59+
60+
All take a single parameter, the "prompt", ie "the message/question you want to pass to the user"
61+
62+
### FILE: terminal.go
63+
This one is basically (for now) used to colour the output, or get the TTY size, or clear a TTY.
64+
65+
To get the current TTY size, you call GetTerminalSize(), it'll return the WIDTHxHEIGHT (2 int values)
66+
67+
To clear a terminal TTY is quite easy: just call ClearTTY(), no params.
68+
69+
The next functions are "colour functions:"<br>
70+
Red(sentence)<br>
71+
Green(sentence)<br>
72+
White(sentence)<br>
73+
Yellow(sentence)<br>
74+
Blue(sentence)<br>
75+
76+
Where "sentence" is a variable of type string that you want to return in the appropriate colour.
77+
78+
79+
### FILE: encodeDecodePassword.go
80+
3 functions in here :
81+
82+
**GetPassword(sentence)** : you will be prompted (the sentence string type in parameters) to enter a password. __The password is not echoed on the TTY; it will be returned in a non-encoded form as a string_. If you wish to return it as an encoded form, you can use the next function...
83+
84+
**EncodeString(string to be encoded, secret key)**
85+
The string to be encoded will be returned. If secret key is empty, a default secret key is provided.
86+
Of course, this is not the suggested behaviour...
87+
88+
_Important note_: secret key has to be **exactly** 32 bytes long, otherwise the default key is used.
89+
90+
**DecodeString(string to be decoded, secret key)**
91+
The string to be decoded will be returned. If secret key is empty, a default secret key is provided.
92+
Of course, this is not the suggested behaviour...
93+
94+
_Important note_: secret key has to be **exactly** 32 bytes long, otherwise the default key is used.
95+
96+

encodeDecodePassword.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,15 @@ func GetPassword(prompt string) string {
5252

5353
// Quick functions to encode and decode strings
5454
// This is based on my encryption-decryption tool : https://github.com/jeanfrancoisgratton/encdec
55-
func EncodeString(string2encrypt string, privateKey string) string {
55+
func EncodeString(string2encode string, privateKey string) string {
5656
// privateKey is optional here
5757
if len(privateKey) != 32 {
58+
// yeah, I say "*crypt" instead of "*code", but I needed 32bits...
5859
privateKey = "secret key 2 encrypt and decrypt"
5960
}
6061

6162
key := []byte(privateKey)
62-
plaintext := []byte(string2encrypt)
63+
plaintext := []byte(string2encode)
6364

6465
block, err := aes.NewCipher(key)
6566
if err != nil {
@@ -78,14 +79,15 @@ func EncodeString(string2encrypt string, privateKey string) string {
7879
return base64.URLEncoding.EncodeToString(ciphertext)
7980
}
8081

81-
func DecodeString(cryptedstring string, privateKey string) string {
82+
func DecodeString(encodedstring string, privateKey string) string {
8283
// privateKey is optional here
8384
if len(privateKey) != 32 {
85+
// yeah, I say "*crypt" instead of "*code", but I needed 32bits...
8486
privateKey = "secret key 2 encrypt and decrypt"
8587
}
8688

8789
key := []byte(privateKey)
88-
ciphertext, _ := base64.URLEncoding.DecodeString(cryptedstring)
90+
ciphertext, _ := base64.URLEncoding.DecodeString(encodedstring)
8991
block, err := aes.NewCipher(key)
9092
if err != nil {
9193
panic(err)

terminal.go

+9
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ func GetTerminalSize() (int, int) {
3131
return int(size.cols), int(size.rows)
3232
}
3333

34+
// Yeah... I know.. nobody should clear a TTY in-tool... :p
35+
func ClearTTY() {
36+
fmt.Println("\\033[2J\\033[H")
37+
}
38+
3439
// COLOR FUNCTIONS
3540
// ===============
3641
func Red(sentence string) string {
@@ -48,3 +53,7 @@ func White(sentence string) string {
4853
func Yellow(sentence string) string {
4954
return fmt.Sprintf("%s", gchalk.WithBrightYellow().Bold(sentence))
5055
}
56+
57+
func Blue(sentence string) string {
58+
return fmt.Sprintf("%s", gchalk.WithYellow().Bold(sentence))
59+
}

0 commit comments

Comments
 (0)