-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbashmod
executable file
·111 lines (100 loc) · 2.82 KB
/
bashmod
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
#!/bin/bash
function create_file
{
if [ -f "$dest" ]; then
changed="false"
msg="file already exists"
else
echo 'Hello, "world!"' >> $dest
changed="true"
msg="file created"
fi
contents=$(cat "$dest" 2>&1 | python -c 'import json,sys; print json.dumps(sys.stdin.read())')
}
function delete_file
{
if [ -f "$dest" ]; then
changed="true"
msg="file deleted"
contents=$(cat "$dest" 2>&1 | python -c 'import json,sys; print json.dumps(sys.stdin.read())')
output=$(rm -f $dest 2>&1 | python -c 'import json,sys; print json.dumps(sys.stdin.read())')
if [ $? -ne 0 ]; then
printf '{"failed": true, "msg": "error deleting file", "output": %s}' "$output"
exit 1
fi
else
changed="false"
msg="file not present"
contents='""'
fi
}
function convert_to_upper
{
if [ ! -f "$dest" ]; then
create_file
msg="$msg, "
fi
current=$(cat $dest)
new=$(echo "$current" | tr '[:lower:]' '[:upper:]')
if [ "$current" = "$new" ]; then
changed="false"
msg="${msg}file not changed"
contents=$(printf "$current" | python -c 'import json,sys; print json.dumps(sys.stdin.read())')
else
changed="true"
msg="${msg}file converted to upper case"
contents=$(printf "$new" | python -c 'import json,sys; print json.dumps(sys.stdin.read())')
fi
}
function convert_to_lower
{
if [ ! -f "$dest" ]; then
create_file
msg="$msg, "
fi
contents=$(ls -l "$dest" 2>&1 | python -c 'import json,sys; print json.dumps(sys.stdin.read())')
current=$(cat $dest)
new=$(echo "$current" | tr '[:upper:]' '[:lower:]')
if [ "$current" = "$new" ]; then
changed="false"
msg="${msg}file not changed"
contents=$(printf "$current" | python -c 'import json,sys; print json.dumps(sys.stdin.read())')
else
echo "$new" > $dest
changed="true"
msg="${msg}file converted to lower case"
contents=$(printf "$new" | python -c 'import json,sys; print json.dumps(sys.stdin.read())')
fi
}
source $1
if [ -z "$dest" ]; then
printf '{"failed": true, "msg": "missing required arguments: dest"}'
exit 1
fi
if [ -z "$state" ]; then
printf '{"failed": true, "msg": "missing required arguments: state"}'
exit 1
fi
changed="false"
msg=""
contents=""
case $state in
present)
create_file
;;
absent)
delete_file
;;
upper)
convert_to_upper
;;
lower)
convert_to_lower
;;
*)
printf '{"failed": true, "msg": "invalid state: %s"}' "$state"
exit 1
;;
esac
printf '{"changed": %s, "msg": "%s", "contents": %s}' "$changed" "$msg" "$contents"
exit 0