-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincap.functions
112 lines (91 loc) · 2.41 KB
/
incap.functions
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
#!/bin/bash
function incap_examples () {
# Turning rules[] from array to object with objects.
# You can then extract rules like this: jq '.rules["api.acl.blacklisted_countries"]'
incap_site_status 101578098 | jq '.security.acls.rules[] | { (.id): .|del(.id) }' | jq -s 'add | { rules: . }'
}
incap_site_mk () {
if [[ x$1 == xhelp ]] ; then
local help='
<function> <account id> <site name> <origin ip>
'
echo "$help"
return
fi
local account_id=$1 domain=$2 site_ip=$3 site_id api_args
api_args="site_ip=$site_ip&domain=${domain}&account_id=${account_id}&send_site_setup_emails=false&force_ssl=true"
echo Creating site $domain 1>&2
if incap_api "$api_args" https://my.incapsula.com/api/prov/v1/sites/add
then
site_id=$( incap site id $domain) || return
incap_res_msg
echo "Setting ignore_ssl to read the incapdns record: "
incap_api "site_id=${site_id}¶m=ignore_ssl&value=true" api/prov/v1/sites/configure && incap_res_msg
else
return 1
fi 1>&2
}
incap_site_rm () {
if [[ x$1 == xhelp ]] ; then
local help='
site rm <site id>'
echo "$help"
return
fi
[[ -z $1 ]] && return 1
if incap api "site_id=$1" api/prov/v1/sites/delete ; then
incap_res_msg 1>&2
incap ls cache sites | egrep ".*_${1}$" | xargs -L 1 rm -v
fi
}
function incap_site_purge () {
if [[ x$1 == xhelp ]] ; then
local help='
site purge cache <site id>
purge web cache
site purge hostname <site name>
purge hostname cache'
echo "$help"
return
fi
case $1 in
cache)
echo Purging site $2 cache...
incap_api site_id=$2 api/prov/v1/sites/cache/purge && incap_res_msg
;;
hostname)
echo Purging $2 from hostname cache...
incap_api host_name=$2 api/prov/v1/sites/hostname/purge && incap_res_msg
;;
esac 1>&2
}
function incap_site_ssl () {
if [[ x$1 == xhelp ]] ; then
local help='
function <site_id>'
echo "$help"
return
fi
local site_id=$1
[[ -n $site_id ]] || return 1
incap_api "site_id=${site_id}¶m=domain_validation&value=dns" api/prov/v1/sites/configure
}
function incap_site_ip () {
if [[ x$1 == xhelp ]] ; then
local help='
incap site ip <site_id> <ip|hostname>'
echo "$help"
return
fi
if [[ -z $2 ]] ; then
echo Usage: "$usage" 1>&2
return 1
else
local id=$1 ip=$2
fi
local old_ips res
old_ips=$(incap_site_status $id | jq -r '.ips')
incap_api "site_id=$id¶m=site_ip&value=$ip" api/prov/v1/sites/configure || return
echo $res |
jq --argjson old_ips "$old_ips" '{site_id , domain , new_ips: .ips, old_ips: $old_ips}'
} # end function