lumberg 1.1.1 → 2.0.0.pre3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.travis.yml +1 -6
- data/README.md +130 -23
- data/lib/lumberg.rb +2 -0
- data/lib/lumberg/cpanel.rb +29 -0
- data/lib/lumberg/cpanel/addon_domain.rb +50 -0
- data/lib/lumberg/cpanel/backups.rb +16 -0
- data/lib/lumberg/cpanel/base.rb +56 -0
- data/lib/lumberg/cpanel/box_trapper.rb +18 -0
- data/lib/lumberg/cpanel/branding.rb +89 -0
- data/lib/lumberg/cpanel/contact.rb +38 -0
- data/lib/lumberg/cpanel/cron.rb +89 -0
- data/lib/lumberg/cpanel/dns_lookup.rb +23 -0
- data/lib/lumberg/cpanel/domain_keys.rb +37 -0
- data/lib/lumberg/cpanel/domain_lookup.rb +71 -0
- data/lib/lumberg/cpanel/email.rb +491 -0
- data/lib/lumberg/cpanel/file_manager.rb +146 -0
- data/lib/lumberg/cpanel/gpg.rb +36 -0
- data/lib/lumberg/cpanel/locale.rb +15 -0
- data/lib/lumberg/cpanel/mime.rb +34 -0
- data/lib/lumberg/cpanel/mysql.rb +66 -0
- data/lib/lumberg/cpanel/net.rb +28 -0
- data/lib/lumberg/cpanel/park.rb +58 -0
- data/lib/lumberg/cpanel/password.rb +52 -0
- data/lib/lumberg/cpanel/random_data.rb +25 -0
- data/lib/lumberg/cpanel/redirect.rb +44 -0
- data/lib/lumberg/cpanel/ssl.rb +198 -0
- data/lib/lumberg/cpanel/sub_domain.rb +61 -0
- data/lib/lumberg/cpanel/support.rb +29 -0
- data/lib/lumberg/cpanel/zone_edit.rb +134 -0
- data/lib/lumberg/format_whm.rb +24 -1
- data/lib/lumberg/version.rb +1 -1
- data/lib/lumberg/whm.rb +2 -1
- data/lib/lumberg/whm/account.rb +4 -4
- data/lib/lumberg/whm/cert.rb +69 -0
- data/lib/lumberg/whm/dns.rb +28 -4
- data/lib/lumberg/whm/reseller.rb +4 -4
- data/lib/lumberg/whm/server.rb +64 -15
- data/lumberg.gemspec +4 -3
- data/spec/config_spec.rb +2 -2
- data/spec/cpanel/addon_domain_spec.rb +84 -0
- data/spec/cpanel/backups_spec.rb +22 -0
- data/spec/cpanel/base_spec.rb +128 -0
- data/spec/cpanel/box_trapper_spec.rb +22 -0
- data/spec/cpanel/branding_spec.rb +46 -0
- data/spec/cpanel/contact_spec.rb +50 -0
- data/spec/cpanel/cron_spec.rb +161 -0
- data/spec/cpanel/dns_lookup_spec.rb +22 -0
- data/spec/cpanel/domain_keys_spec.rb +46 -0
- data/spec/cpanel/domain_lookup_spec.rb +77 -0
- data/spec/cpanel/email_spec.rb +615 -0
- data/spec/cpanel/file_manager_spec.rb +73 -0
- data/spec/cpanel/gpg_spec.rb +48 -0
- data/spec/cpanel/locale_spec.rb +23 -0
- data/spec/cpanel/mime_spec.rb +0 -0
- data/spec/cpanel/mysql_spec.rb +0 -0
- data/spec/cpanel/net_spec.rb +30 -0
- data/spec/cpanel/park_spec.rb +94 -0
- data/spec/cpanel/password_spec.rb +35 -0
- data/spec/cpanel/random_data_spec.rb +24 -0
- data/spec/cpanel/redirect_spec.rb +0 -0
- data/spec/cpanel/ssl_spec.rb +138 -0
- data/spec/cpanel/sub_domain_spec.rb +72 -0
- data/spec/cpanel/support_spec.rb +38 -0
- data/spec/cpanel/zone_edit_spec.rb +0 -0
- data/spec/sample_certs/cpanel.crt +28 -0
- data/spec/sample_certs/cpanel.key +28 -0
- data/spec/sample_certs/main.crt +27 -0
- data/spec/sample_certs/sample.crt +26 -0
- data/spec/sample_certs/sample.key +27 -0
- data/spec/spec_helper.rb +7 -1
- data/spec/support/cpanel_matchers.rb +17 -0
- data/spec/vcr_cassettes/cpanel/addon_domain/add.yml +77 -0
- data/spec/vcr_cassettes/cpanel/addon_domain/list.yml +77 -0
- data/spec/vcr_cassettes/cpanel/addon_domain/remove.yml +77 -0
- data/spec/vcr_cassettes/cpanel/backups/list.yml +40 -0
- data/spec/vcr_cassettes/cpanel/box_trapper/list.yml +40 -0
- data/spec/vcr_cassettes/cpanel/branding/list_icons.yml +40 -0
- data/spec/vcr_cassettes/cpanel/branding/list_image_types.yml +40 -0
- data/spec/vcr_cassettes/cpanel/branding/list_object_types.yml +40 -0
- data/spec/vcr_cassettes/cpanel/branding/list_pkgs.yml +40 -0
- data/spec/vcr_cassettes/cpanel/branding/list_sprites.yml +40 -0
- data/spec/vcr_cassettes/cpanel/contact/show.yml +40 -0
- data/spec/vcr_cassettes/cpanel/contact/update.yml +40 -0
- data/spec/vcr_cassettes/cpanel/cron/add.yml +77 -0
- data/spec/vcr_cassettes/cpanel/cron/edit.yml +114 -0
- data/spec/vcr_cassettes/cpanel/cron/email.yml +77 -0
- data/spec/vcr_cassettes/cpanel/cron/list.yml +77 -0
- data/spec/vcr_cassettes/cpanel/cron/remove.yml +151 -0
- data/spec/vcr_cassettes/cpanel/cron/set_email.yml +77 -0
- data/spec/vcr_cassettes/cpanel/dns_lookup/name_to_ip.yml +40 -0
- data/spec/vcr_cassettes/cpanel/domain_keys/add.yml +40 -0
- data/spec/vcr_cassettes/cpanel/domain_keys/available.yml +40 -0
- data/spec/vcr_cassettes/cpanel/domain_keys/installed.yml +40 -0
- data/spec/vcr_cassettes/cpanel/domain_keys/remove.yml +40 -0
- data/spec/vcr_cassettes/cpanel/domain_lookup/count.yml +40 -0
- data/spec/vcr_cassettes/cpanel/domain_lookup/docroot.yml +40 -0
- data/spec/vcr_cassettes/cpanel/domain_lookup/docroots.yml +40 -0
- data/spec/vcr_cassettes/cpanel/domain_lookup/document_root.yml +40 -0
- data/spec/vcr_cassettes/cpanel/domain_lookup/document_roots.yml +40 -0
- data/spec/vcr_cassettes/cpanel/domain_lookup/list.yml +40 -0
- data/spec/vcr_cassettes/cpanel/email/acceptable_encodings.yml +40 -0
- data/spec/vcr_cassettes/cpanel/email/accounts.yml +188 -0
- data/spec/vcr_cassettes/cpanel/email/add_account.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/add_filter.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/add_forwarder.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/add_mailing_list.yml +73 -0
- data/spec/vcr_cassettes/cpanel/email/add_mx.yml +40 -0
- data/spec/vcr_cassettes/cpanel/email/change_mx.yml +40 -0
- data/spec/vcr_cassettes/cpanel/email/check_local_delivery_local.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/check_local_delivery_remote.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/default_address.yml +40 -0
- data/spec/vcr_cassettes/cpanel/email/delete_mx.yml +40 -0
- data/spec/vcr_cassettes/cpanel/email/disk_usage.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/domains.yml +40 -0
- data/spec/vcr_cassettes/cpanel/email/domains_with_aliases.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/edit_quota.yml +112 -0
- data/spec/vcr_cassettes/cpanel/email/filters.yml +114 -0
- data/spec/vcr_cassettes/cpanel/email/forwarders.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/mail_dir.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/mail_dirs.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/mailing_lists.yml +73 -0
- data/spec/vcr_cassettes/cpanel/email/main_discard.yml +40 -0
- data/spec/vcr_cassettes/cpanel/email/mx.yml +40 -0
- data/spec/vcr_cassettes/cpanel/email/remove.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/set_mail_delivery_local.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/set_mail_delivery_remote.yml +77 -0
- data/spec/vcr_cassettes/cpanel/email/set_mx_type.yml +40 -0
- data/spec/vcr_cassettes/cpanel/file_manager/disk_usage.yml +38 -0
- data/spec/vcr_cassettes/cpanel/file_manager/list.yml +38 -0
- data/spec/vcr_cassettes/cpanel/file_manager/operate.yml +77 -0
- data/spec/vcr_cassettes/cpanel/file_manager/show.yml +40 -0
- data/spec/vcr_cassettes/cpanel/file_manager/stat.yml +38 -0
- data/spec/vcr_cassettes/cpanel/gpg/count.yml +40 -0
- data/spec/vcr_cassettes/cpanel/gpg/count_private.yml +40 -0
- data/spec/vcr_cassettes/cpanel/gpg/list.yml +40 -0
- data/spec/vcr_cassettes/cpanel/gpg/list_private.yml +40 -0
- data/spec/vcr_cassettes/cpanel/locale/show.yml +40 -0
- data/spec/vcr_cassettes/cpanel/net/query_hostname.yml +40 -0
- data/spec/vcr_cassettes/cpanel/net/traceroute.yml +40 -0
- data/spec/vcr_cassettes/cpanel/park/add.yml +77 -0
- data/spec/vcr_cassettes/cpanel/park/list.yml +77 -0
- data/spec/vcr_cassettes/cpanel/park/list_addon_domains.yml +77 -0
- data/spec/vcr_cassettes/cpanel/park/remove.yml +77 -0
- data/spec/vcr_cassettes/cpanel/password/digest_authentication.yml +77 -0
- data/spec/vcr_cassettes/cpanel/password/modify.yml +77 -0
- data/spec/vcr_cassettes/cpanel/random_data/show.yml +40 -0
- data/spec/vcr_cassettes/cpanel/ssl/fetchcabundle.yml +40 -0
- data/spec/vcr_cassettes/cpanel/ssl/gencrt.yml +40 -0
- data/spec/vcr_cassettes/cpanel/ssl/gencsr.yml +40 -0
- data/spec/vcr_cassettes/cpanel/ssl/genkey.yml +40 -0
- data/spec/vcr_cassettes/cpanel/ssl/installssl.yml +40 -0
- data/spec/vcr_cassettes/cpanel/ssl/listcrts.yml +40 -0
- data/spec/vcr_cassettes/cpanel/ssl/listcsrs.yml +40 -0
- data/spec/vcr_cassettes/cpanel/ssl/listkeys.yml +40 -0
- data/spec/vcr_cassettes/cpanel/ssl/listsslitems.yml +40 -0
- data/spec/vcr_cassettes/cpanel/ssl/showcrt.yml +38 -0
- data/spec/vcr_cassettes/cpanel/ssl/showcsr.yml +38 -0
- data/spec/vcr_cassettes/cpanel/ssl/showkey.yml +38 -0
- data/spec/vcr_cassettes/cpanel/ssl/uploadcrt.yml +40 -0
- data/spec/vcr_cassettes/cpanel/sub_domain/add.yml +77 -0
- data/spec/vcr_cassettes/cpanel/sub_domain/list.yml +77 -0
- data/spec/vcr_cassettes/cpanel/sub_domain/remove.yml +77 -0
- data/spec/vcr_cassettes/cpanel/support/contactable.yml +40 -0
- data/spec/vcr_cassettes/whm/cert/fetchsslinfo.yml +38 -0
- data/spec/vcr_cassettes/whm/cert/generatessl.yml +38 -0
- data/spec/vcr_cassettes/whm/cert/installssl.yml +38 -0
- data/spec/vcr_cassettes/whm/cert/listcrts.yml +38 -0
- data/spec/vcr_cassettes/whm/server/gettweaksetting.yml +44 -0
- data/spec/vcr_cassettes/whm/server/settweaksetting.yml +44 -0
- data/spec/vcr_cassettes/whm/server/themes.yml +38 -0
- data/spec/whm/cert_spec.rb +62 -0
- data/spec/whm/server_spec.rb +79 -3
- metadata +376 -34
- data/.rvmrc +0 -49
@@ -0,0 +1,77 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://myhost.com:2087/json-api/cpanel?command=foo&cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=add_line&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg&day=1&hour=1&minute=1&month=1&weekday=1
|
6
|
+
body:
|
7
|
+
string: ""
|
8
|
+
headers:
|
9
|
+
User-Agent:
|
10
|
+
- Faraday v0.8.7
|
11
|
+
Accept:
|
12
|
+
- "*/*"
|
13
|
+
Authorization:
|
14
|
+
- WHM root:iscool
|
15
|
+
response:
|
16
|
+
status:
|
17
|
+
code: 200
|
18
|
+
message: OK
|
19
|
+
headers:
|
20
|
+
Content-Type:
|
21
|
+
- text/plain; charset="utf-8"
|
22
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "249"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:47:57 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"event":{"result":1},"apiversion":2,"func":"add_line","module":"Cron","data":[{"statusmsg":"This cron job already exists.","status":0,"linekey":"e1ce16ad6557f5b22f31ada1371d8f77"}],"preevent":{"result":1},"postevent":{"result":1}}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:47:58 GMT
|
40
|
+
- request:
|
41
|
+
method: get
|
42
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=listcron&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg
|
43
|
+
body:
|
44
|
+
string: ""
|
45
|
+
headers:
|
46
|
+
User-Agent:
|
47
|
+
- Faraday v0.8.7
|
48
|
+
Accept:
|
49
|
+
- "*/*"
|
50
|
+
Authorization:
|
51
|
+
- WHM root:iscool
|
52
|
+
response:
|
53
|
+
status:
|
54
|
+
code: 200
|
55
|
+
message: OK
|
56
|
+
headers:
|
57
|
+
Content-Type:
|
58
|
+
- text/plain; charset="utf-8"
|
59
|
+
Server:
|
60
|
+
- cpsrvd/11.32.6.3
|
61
|
+
Content-Length:
|
62
|
+
- "797"
|
63
|
+
X-Keep-Alive-Count:
|
64
|
+
- "1"
|
65
|
+
Connection:
|
66
|
+
- Keep-Alive
|
67
|
+
Date:
|
68
|
+
- Fri, 03 May 2013 13:47:57 GMT
|
69
|
+
Keep-Alive:
|
70
|
+
- timeout=70, max=200
|
71
|
+
body:
|
72
|
+
string: |
|
73
|
+
{"cpanelresult":{"data":[{"linekey":"142f5e82e28e40783de383eb93c570f3","day":"1","command_htmlsafe":"hi","command":"hi","count":1,"month":"1","minute":"1","weekday":"1","hour":"1"},{"linekey":"e1ce16ad6557f5b22f31ada1371d8f77","day":"1","command_htmlsafe":"foo","command":"foo","count":2,"month":"1","minute":"1","weekday":"1","hour":"1"},{"linekey":"01ef1ea05ac43132ded896cad80c8b08","day":"1","command_htmlsafe":"taco","command":"taco","count":3,"month":"1","minute":"1","weekday":"1","hour":"3"},{"linekey":"09f7366534c5dc41b4196634bbb245d1","day":"1","command_htmlsafe":"whatev","command":"whatev","count":4,"month":"1","minute":"1","weekday":"1","hour":"1"},{"count":5}],"module":"Cron","preevent":{"result":1},"postevent":{"result":1},"func":"listcron","apiversion":2,"event":{"result":1}}}
|
74
|
+
|
75
|
+
http_version:
|
76
|
+
recorded_at: Fri, 03 May 2013 13:47:58 GMT
|
77
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,114 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://myhost.com:2087/json-api/cpanel?command=whatev&cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=add_line&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg&day=1&hour=1&minute=1&month=1&weekday=1
|
6
|
+
body:
|
7
|
+
string: ""
|
8
|
+
headers:
|
9
|
+
User-Agent:
|
10
|
+
- Faraday v0.8.7
|
11
|
+
Accept:
|
12
|
+
- "*/*"
|
13
|
+
Authorization:
|
14
|
+
- WHM root:iscool
|
15
|
+
response:
|
16
|
+
status:
|
17
|
+
code: 200
|
18
|
+
message: OK
|
19
|
+
headers:
|
20
|
+
Content-Type:
|
21
|
+
- text/plain; charset="utf-8"
|
22
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "249"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:48:05 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"data":[{"linekey":"09f7366534c5dc41b4196634bbb245d1","statusmsg":"This cron job already exists.","status":0}],"event":{"result":1},"func":"add_line","module":"Cron","apiversion":2,"preevent":{"result":1},"postevent":{"result":1}}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:48:06 GMT
|
40
|
+
- request:
|
41
|
+
method: get
|
42
|
+
uri: https://myhost.com:2087/json-api/cpanel?command=taco&cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=edit_line&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg&day=1&hour=3&linekey=09f7366534c5dc41b4196634bbb245d1&minute=1&month=1&weekday=1
|
43
|
+
body:
|
44
|
+
string: ""
|
45
|
+
headers:
|
46
|
+
User-Agent:
|
47
|
+
- Faraday v0.8.7
|
48
|
+
Accept:
|
49
|
+
- "*/*"
|
50
|
+
Authorization:
|
51
|
+
- WHM root:iscool
|
52
|
+
response:
|
53
|
+
status:
|
54
|
+
code: 200
|
55
|
+
message: OK
|
56
|
+
headers:
|
57
|
+
Content-Type:
|
58
|
+
- text/plain; charset="utf-8"
|
59
|
+
Server:
|
60
|
+
- cpsrvd/11.32.6.3
|
61
|
+
Content-Length:
|
62
|
+
- "250"
|
63
|
+
X-Keep-Alive-Count:
|
64
|
+
- "1"
|
65
|
+
Connection:
|
66
|
+
- Keep-Alive
|
67
|
+
Date:
|
68
|
+
- Fri, 03 May 2013 13:48:06 GMT
|
69
|
+
Keep-Alive:
|
70
|
+
- timeout=70, max=200
|
71
|
+
body:
|
72
|
+
string: |
|
73
|
+
{"cpanelresult":{"data":[{"linekey":"01ef1ea05ac43132ded896cad80c8b08","status":0,"statusmsg":"This cron job already exists."}],"event":{"result":1},"apiversion":2,"func":"edit_line","preevent":{"result":1},"postevent":{"result":1},"module":"Cron"}}
|
74
|
+
|
75
|
+
http_version:
|
76
|
+
recorded_at: Fri, 03 May 2013 13:48:06 GMT
|
77
|
+
- request:
|
78
|
+
method: get
|
79
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=listcron&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg
|
80
|
+
body:
|
81
|
+
string: ""
|
82
|
+
headers:
|
83
|
+
User-Agent:
|
84
|
+
- Faraday v0.8.7
|
85
|
+
Accept:
|
86
|
+
- "*/*"
|
87
|
+
Authorization:
|
88
|
+
- WHM root:iscool
|
89
|
+
response:
|
90
|
+
status:
|
91
|
+
code: 200
|
92
|
+
message: OK
|
93
|
+
headers:
|
94
|
+
Content-Type:
|
95
|
+
- text/plain; charset="utf-8"
|
96
|
+
Server:
|
97
|
+
- cpsrvd/11.32.6.3
|
98
|
+
Content-Length:
|
99
|
+
- "797"
|
100
|
+
X-Keep-Alive-Count:
|
101
|
+
- "1"
|
102
|
+
Connection:
|
103
|
+
- Keep-Alive
|
104
|
+
Date:
|
105
|
+
- Fri, 03 May 2013 13:48:06 GMT
|
106
|
+
Keep-Alive:
|
107
|
+
- timeout=70, max=200
|
108
|
+
body:
|
109
|
+
string: |
|
110
|
+
{"cpanelresult":{"preevent":{"result":1},"apiversion":2,"event":{"result":1},"module":"Cron","data":[{"linekey":"142f5e82e28e40783de383eb93c570f3","minute":"1","weekday":"1","month":"1","command_htmlsafe":"hi","command":"hi","count":1,"hour":"1","day":"1"},{"linekey":"e1ce16ad6557f5b22f31ada1371d8f77","minute":"1","weekday":"1","month":"1","command_htmlsafe":"foo","command":"foo","count":2,"hour":"1","day":"1"},{"linekey":"01ef1ea05ac43132ded896cad80c8b08","minute":"1","weekday":"1","month":"1","command_htmlsafe":"taco","command":"taco","count":3,"hour":"3","day":"1"},{"linekey":"09f7366534c5dc41b4196634bbb245d1","minute":"1","weekday":"1","month":"1","command_htmlsafe":"whatev","command":"whatev","count":4,"hour":"1","day":"1"},{"count":5}],"func":"listcron","postevent":{"result":1}}}
|
111
|
+
|
112
|
+
http_version:
|
113
|
+
recorded_at: Fri, 03 May 2013 13:48:07 GMT
|
114
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,77 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=set_email&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg&email=sauron@mordor.com
|
6
|
+
body:
|
7
|
+
string: ""
|
8
|
+
headers:
|
9
|
+
User-Agent:
|
10
|
+
- Faraday v0.8.7
|
11
|
+
Accept:
|
12
|
+
- "*/*"
|
13
|
+
Authorization:
|
14
|
+
- WHM root:iscool
|
15
|
+
response:
|
16
|
+
status:
|
17
|
+
code: 200
|
18
|
+
message: OK
|
19
|
+
headers:
|
20
|
+
Content-Type:
|
21
|
+
- text/plain; charset="utf-8"
|
22
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "221"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:47:55 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"postevent":{"result":1},"data":[{"statusmsg":"crontab installed","email":"sauron@mordor.com","status":1}],"event":{"result":1},"apiversion":2,"preevent":{"result":1},"module":"Cron","func":"set_email"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:47:56 GMT
|
40
|
+
- request:
|
41
|
+
method: get
|
42
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=get_email&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg
|
43
|
+
body:
|
44
|
+
string: ""
|
45
|
+
headers:
|
46
|
+
User-Agent:
|
47
|
+
- Faraday v0.8.7
|
48
|
+
Accept:
|
49
|
+
- "*/*"
|
50
|
+
Authorization:
|
51
|
+
- WHM root:iscool
|
52
|
+
response:
|
53
|
+
status:
|
54
|
+
code: 200
|
55
|
+
message: OK
|
56
|
+
headers:
|
57
|
+
Content-Type:
|
58
|
+
- text/plain; charset="utf-8"
|
59
|
+
Server:
|
60
|
+
- cpsrvd/11.32.6.3
|
61
|
+
Content-Length:
|
62
|
+
- "178"
|
63
|
+
X-Keep-Alive-Count:
|
64
|
+
- "1"
|
65
|
+
Connection:
|
66
|
+
- Keep-Alive
|
67
|
+
Date:
|
68
|
+
- Fri, 03 May 2013 13:47:56 GMT
|
69
|
+
Keep-Alive:
|
70
|
+
- timeout=70, max=200
|
71
|
+
body:
|
72
|
+
string: |
|
73
|
+
{"cpanelresult":{"postevent":{"result":1},"event":{"result":1},"func":"get_email","module":"Cron","data":[{"email":"sauron@mordor.com"}],"preevent":{"result":1},"apiversion":2}}
|
74
|
+
|
75
|
+
http_version:
|
76
|
+
recorded_at: Fri, 03 May 2013 13:47:57 GMT
|
77
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,77 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://myhost.com:2087/json-api/cpanel?command=hi&cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=add_line&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg&day=1&hour=1&minute=1&month=1&weekday=1
|
6
|
+
body:
|
7
|
+
string: ""
|
8
|
+
headers:
|
9
|
+
User-Agent:
|
10
|
+
- Faraday v0.8.7
|
11
|
+
Accept:
|
12
|
+
- "*/*"
|
13
|
+
Authorization:
|
14
|
+
- WHM root:iscool
|
15
|
+
response:
|
16
|
+
status:
|
17
|
+
code: 200
|
18
|
+
message: OK
|
19
|
+
headers:
|
20
|
+
Content-Type:
|
21
|
+
- text/plain; charset="utf-8"
|
22
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "249"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:47:56 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"event":{"result":1},"func":"add_line","module":"Cron","postevent":{"result":1},"data":[{"statusmsg":"This cron job already exists.","linekey":"142f5e82e28e40783de383eb93c570f3","status":0}],"preevent":{"result":1},"apiversion":2}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:47:57 GMT
|
40
|
+
- request:
|
41
|
+
method: get
|
42
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=listcron&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg
|
43
|
+
body:
|
44
|
+
string: ""
|
45
|
+
headers:
|
46
|
+
User-Agent:
|
47
|
+
- Faraday v0.8.7
|
48
|
+
Accept:
|
49
|
+
- "*/*"
|
50
|
+
Authorization:
|
51
|
+
- WHM root:iscool
|
52
|
+
response:
|
53
|
+
status:
|
54
|
+
code: 200
|
55
|
+
message: OK
|
56
|
+
headers:
|
57
|
+
Content-Type:
|
58
|
+
- text/plain; charset="utf-8"
|
59
|
+
Server:
|
60
|
+
- cpsrvd/11.32.6.3
|
61
|
+
Content-Length:
|
62
|
+
- "797"
|
63
|
+
X-Keep-Alive-Count:
|
64
|
+
- "1"
|
65
|
+
Connection:
|
66
|
+
- Keep-Alive
|
67
|
+
Date:
|
68
|
+
- Fri, 03 May 2013 13:47:57 GMT
|
69
|
+
Keep-Alive:
|
70
|
+
- timeout=70, max=200
|
71
|
+
body:
|
72
|
+
string: |
|
73
|
+
{"cpanelresult":{"preevent":{"result":1},"func":"listcron","data":[{"count":1,"month":"1","hour":"1","linekey":"142f5e82e28e40783de383eb93c570f3","day":"1","weekday":"1","command":"hi","command_htmlsafe":"hi","minute":"1"},{"count":2,"month":"1","hour":"1","linekey":"e1ce16ad6557f5b22f31ada1371d8f77","day":"1","weekday":"1","command":"foo","command_htmlsafe":"foo","minute":"1"},{"count":3,"month":"1","hour":"3","linekey":"01ef1ea05ac43132ded896cad80c8b08","day":"1","weekday":"1","command":"taco","command_htmlsafe":"taco","minute":"1"},{"count":4,"month":"1","hour":"1","linekey":"09f7366534c5dc41b4196634bbb245d1","day":"1","weekday":"1","command":"whatev","command_htmlsafe":"whatev","minute":"1"},{"count":5}],"postevent":{"result":1},"event":{"result":1},"module":"Cron","apiversion":2}}
|
74
|
+
|
75
|
+
http_version:
|
76
|
+
recorded_at: Fri, 03 May 2013 13:47:57 GMT
|
77
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,151 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://myhost.com:2087/json-api/cpanel?command=baz&cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=add_line&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg&day=1&hour=1&minute=1&month=1&weekday=1
|
6
|
+
body:
|
7
|
+
string: ""
|
8
|
+
headers:
|
9
|
+
User-Agent:
|
10
|
+
- Faraday v0.8.7
|
11
|
+
Accept:
|
12
|
+
- "*/*"
|
13
|
+
Authorization:
|
14
|
+
- WHM root:iscool
|
15
|
+
response:
|
16
|
+
status:
|
17
|
+
code: 200
|
18
|
+
message: OK
|
19
|
+
headers:
|
20
|
+
Content-Type:
|
21
|
+
- text/plain; charset="utf-8"
|
22
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "237"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:47:58 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"preevent":{"result":1},"postevent":{"result":1},"func":"add_line","apiversion":2,"event":{"result":1},"data":[{"linekey":"ee256b7c549d7c00f86fdb5f36e12959","status":1,"statusmsg":"crontab installed"}],"module":"Cron"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:47:59 GMT
|
40
|
+
- request:
|
41
|
+
method: get
|
42
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=listcron&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg
|
43
|
+
body:
|
44
|
+
string: ""
|
45
|
+
headers:
|
46
|
+
User-Agent:
|
47
|
+
- Faraday v0.8.7
|
48
|
+
Accept:
|
49
|
+
- "*/*"
|
50
|
+
Authorization:
|
51
|
+
- WHM root:iscool
|
52
|
+
response:
|
53
|
+
status:
|
54
|
+
code: 200
|
55
|
+
message: OK
|
56
|
+
headers:
|
57
|
+
Content-Type:
|
58
|
+
- text/plain; charset="utf-8"
|
59
|
+
Server:
|
60
|
+
- cpsrvd/11.32.6.3
|
61
|
+
Content-Length:
|
62
|
+
- "955"
|
63
|
+
X-Keep-Alive-Count:
|
64
|
+
- "1"
|
65
|
+
Connection:
|
66
|
+
- Keep-Alive
|
67
|
+
Date:
|
68
|
+
- Fri, 03 May 2013 13:47:59 GMT
|
69
|
+
Keep-Alive:
|
70
|
+
- timeout=70, max=200
|
71
|
+
body:
|
72
|
+
string: |
|
73
|
+
{"cpanelresult":{"preevent":{"result":1},"event":{"result":1},"data":[{"month":"1","day":"1","command_htmlsafe":"hi","minute":"1","hour":"1","linekey":"142f5e82e28e40783de383eb93c570f3","count":1,"weekday":"1","command":"hi"},{"month":"1","day":"1","command_htmlsafe":"foo","minute":"1","hour":"1","linekey":"e1ce16ad6557f5b22f31ada1371d8f77","count":2,"weekday":"1","command":"foo"},{"month":"1","day":"1","command_htmlsafe":"taco","minute":"1","hour":"3","linekey":"01ef1ea05ac43132ded896cad80c8b08","count":3,"weekday":"1","command":"taco"},{"month":"1","day":"1","command_htmlsafe":"whatev","minute":"1","hour":"1","linekey":"09f7366534c5dc41b4196634bbb245d1","count":4,"weekday":"1","command":"whatev"},{"month":"1","day":"1","command_htmlsafe":"baz","minute":"1","hour":"1","linekey":"ee256b7c549d7c00f86fdb5f36e12959","count":5,"weekday":"1","command":"baz"},{"count":6}],"module":"Cron","postevent":{"result":1},"apiversion":2,"func":"listcron"}}
|
74
|
+
|
75
|
+
http_version:
|
76
|
+
recorded_at: Fri, 03 May 2013 13:47:59 GMT
|
77
|
+
- request:
|
78
|
+
method: get
|
79
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=remove_line&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg&linekey=ee256b7c549d7c00f86fdb5f36e12959
|
80
|
+
body:
|
81
|
+
string: ""
|
82
|
+
headers:
|
83
|
+
User-Agent:
|
84
|
+
- Faraday v0.8.7
|
85
|
+
Accept:
|
86
|
+
- "*/*"
|
87
|
+
Authorization:
|
88
|
+
- WHM root:iscool
|
89
|
+
response:
|
90
|
+
status:
|
91
|
+
code: 200
|
92
|
+
message: OK
|
93
|
+
headers:
|
94
|
+
Content-Type:
|
95
|
+
- text/plain; charset="utf-8"
|
96
|
+
Server:
|
97
|
+
- cpsrvd/11.32.6.3
|
98
|
+
Content-Length:
|
99
|
+
- "195"
|
100
|
+
X-Keep-Alive-Count:
|
101
|
+
- "1"
|
102
|
+
Connection:
|
103
|
+
- Keep-Alive
|
104
|
+
Date:
|
105
|
+
- Fri, 03 May 2013 13:48:04 GMT
|
106
|
+
Keep-Alive:
|
107
|
+
- timeout=70, max=200
|
108
|
+
body:
|
109
|
+
string: |
|
110
|
+
{"cpanelresult":{"event":{"result":1},"module":"Cron","apiversion":2,"data":[{"statusmsg":"crontab installed","status":1}],"postevent":{"result":1},"preevent":{"result":1},"func":"remove_line"}}
|
111
|
+
|
112
|
+
http_version:
|
113
|
+
recorded_at: Fri, 03 May 2013 13:48:05 GMT
|
114
|
+
- request:
|
115
|
+
method: get
|
116
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=listcron&cpanel_jsonapi_module=Cron&cpanel_jsonapi_user=lumberg
|
117
|
+
body:
|
118
|
+
string: ""
|
119
|
+
headers:
|
120
|
+
User-Agent:
|
121
|
+
- Faraday v0.8.7
|
122
|
+
Accept:
|
123
|
+
- "*/*"
|
124
|
+
Authorization:
|
125
|
+
- WHM root:iscool
|
126
|
+
response:
|
127
|
+
status:
|
128
|
+
code: 200
|
129
|
+
message: OK
|
130
|
+
headers:
|
131
|
+
Content-Type:
|
132
|
+
- text/plain; charset="utf-8"
|
133
|
+
Server:
|
134
|
+
- cpsrvd/11.32.6.3
|
135
|
+
Content-Length:
|
136
|
+
- "797"
|
137
|
+
X-Keep-Alive-Count:
|
138
|
+
- "1"
|
139
|
+
Connection:
|
140
|
+
- Keep-Alive
|
141
|
+
Date:
|
142
|
+
- Fri, 03 May 2013 13:48:05 GMT
|
143
|
+
Keep-Alive:
|
144
|
+
- timeout=70, max=200
|
145
|
+
body:
|
146
|
+
string: |
|
147
|
+
{"cpanelresult":{"func":"listcron","module":"Cron","apiversion":2,"data":[{"command_htmlsafe":"hi","weekday":"1","month":"1","day":"1","linekey":"142f5e82e28e40783de383eb93c570f3","count":1,"command":"hi","minute":"1","hour":"1"},{"command_htmlsafe":"foo","weekday":"1","month":"1","day":"1","linekey":"e1ce16ad6557f5b22f31ada1371d8f77","count":2,"command":"foo","minute":"1","hour":"1"},{"command_htmlsafe":"taco","weekday":"1","month":"1","day":"1","linekey":"01ef1ea05ac43132ded896cad80c8b08","count":3,"command":"taco","minute":"1","hour":"3"},{"command_htmlsafe":"whatev","weekday":"1","month":"1","day":"1","linekey":"09f7366534c5dc41b4196634bbb245d1","count":4,"command":"whatev","minute":"1","hour":"1"},{"count":5}],"event":{"result":1},"postevent":{"result":1},"preevent":{"result":1}}}
|
148
|
+
|
149
|
+
http_version:
|
150
|
+
recorded_at: Fri, 03 May 2013 13:48:05 GMT
|
151
|
+
recorded_with: VCR 2.0.1
|