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?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=setalwaysaccept&cpanel_jsonapi_module=Email&cpanel_jsonapi_user=lumberg&delivery=remote&domain=lumberg-test.com&mxcheck=remote
|
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
|
+
X-Keep-Alive-Count:
|
23
|
+
- "1"
|
24
|
+
Keep-Alive:
|
25
|
+
- timeout=70, max=200
|
26
|
+
Connection:
|
27
|
+
- Keep-Alive
|
28
|
+
Content-Length:
|
29
|
+
- "482"
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 16:47:51 GMT
|
32
|
+
Server:
|
33
|
+
- cpsrvd/11.32.6.3
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"postevent":{"result":1},"preevent":{"result":1},"event":{"result":1},"module":"Email","apiversion":2,"data":[{"status":1,"remote":1,"local":0,"checkmx":{"remote":1,"local":0,"detected":"remote","mxcheck":"remote","secondary":0,"changed":1,"isprimary":0,"issecondary":0,"warnings":[]},"detected":"remote","mxcheck":"remote","secondary":0,"results":"Set Always Accept Status to: remote","statusmsg":"Set Always Accept Status to: remote"}],"func":"setalwaysaccept"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 16:47:52 GMT
|
40
|
+
- request:
|
41
|
+
method: get
|
42
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=listmxs&cpanel_jsonapi_module=Email&cpanel_jsonapi_user=lumberg&domain=lumberg-test.com
|
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
|
+
X-Keep-Alive-Count:
|
60
|
+
- "1"
|
61
|
+
Keep-Alive:
|
62
|
+
- timeout=70, max=200
|
63
|
+
Connection:
|
64
|
+
- Keep-Alive
|
65
|
+
Content-Length:
|
66
|
+
- "439"
|
67
|
+
Date:
|
68
|
+
- Fri, 03 May 2013 16:47:53 GMT
|
69
|
+
Server:
|
70
|
+
- cpsrvd/11.32.6.3
|
71
|
+
body:
|
72
|
+
string: |
|
73
|
+
{"cpanelresult":{"preevent":{"result":1},"module":"Email","apiversion":2,"event":{"result":1},"postevent":{"result":1},"data":[{"local":0,"status":1,"secondary":0,"remote":0,"statusmsg":"Fetched MX List","domain":"lumberg-test.com","alwaysaccept":0,"detected":"remote","mxcheck":"remote","mx":"lumberg-test.com","entries":[{"row":"odd","mx":"lumberg-test.com","priority":0,"domain":"lumberg-test.com","entrycount":1}]}],"func":"listmxs"}}
|
74
|
+
|
75
|
+
http_version:
|
76
|
+
recorded_at: Fri, 03 May 2013 16:47:53 GMT
|
77
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,40 @@
|
|
1
|
+
---
|
2
|
+
recorded_with: VCR 2.0.1
|
3
|
+
http_interactions:
|
4
|
+
- request:
|
5
|
+
method: get
|
6
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=setmxcheck&cpanel_jsonapi_module=Email&cpanel_jsonapi_user=lumberg&domain=lumberg-test.com&mxcheck=remote
|
7
|
+
body:
|
8
|
+
string: ""
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- "*/*"
|
12
|
+
Authorization:
|
13
|
+
- WHM root:iscool
|
14
|
+
User-Agent:
|
15
|
+
- Faraday v0.8.7
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
X-Keep-Alive-Count:
|
22
|
+
- "1"
|
23
|
+
Server:
|
24
|
+
- cpsrvd/11.32.6.4
|
25
|
+
Date:
|
26
|
+
- Thu, 30 May 2013 18:16:07 GMT
|
27
|
+
Keep-Alive:
|
28
|
+
- timeout=70, max=200
|
29
|
+
Connection:
|
30
|
+
- Keep-Alive
|
31
|
+
Content-Type:
|
32
|
+
- text/plain; charset="utf-8"
|
33
|
+
Content-Length:
|
34
|
+
- "428"
|
35
|
+
body:
|
36
|
+
string: |
|
37
|
+
{"cpanelresult":{"module":"Email","event":{"result":1},"data":[{"statusmsg":"Set Always Accept Status to: remote","status":1,"detected":"remote","remote":1,"secondary":0,"checkmx":{"issecondary":0,"isprimary":0,"detected":"remote","remote":1,"secondary":0,"warnings":[],"local":0,"mxcheck":"remote","changed":1},"local":0,"mxcheck":"remote","results":"Set Always Accept Status to: remote"}],"func":"setmxcheck","apiversion":2}}
|
38
|
+
|
39
|
+
http_version:
|
40
|
+
recorded_at: Thu, 30 May 2013 18:16:08 GMT
|
@@ -0,0 +1,38 @@
|
|
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=getdiskinfo&cpanel_jsonapi_module=Fileman&cpanel_jsonapi_user=lumberg
|
6
|
+
body:
|
7
|
+
string: ""
|
8
|
+
headers:
|
9
|
+
Accept:
|
10
|
+
- "*/*"
|
11
|
+
Authorization:
|
12
|
+
- WHM root:iscool
|
13
|
+
User-Agent:
|
14
|
+
- Faraday v0.8.7
|
15
|
+
response:
|
16
|
+
status:
|
17
|
+
code: 200
|
18
|
+
message: OK
|
19
|
+
headers:
|
20
|
+
Date:
|
21
|
+
- Wed, 15 May 2013 04:22:41 GMT
|
22
|
+
X-Keep-Alive-Count:
|
23
|
+
- "1"
|
24
|
+
Server:
|
25
|
+
- cpsrvd/11.36.0.4
|
26
|
+
Content-Type:
|
27
|
+
- application/json; charset="utf-8"
|
28
|
+
Content-Length:
|
29
|
+
- "650"
|
30
|
+
Keep-Alive:
|
31
|
+
- timeout=70, max=200
|
32
|
+
Connection:
|
33
|
+
- Keep-Alive
|
34
|
+
body:
|
35
|
+
string: "{\"cpanelresult\":{\"apiversion\":2,\"func\":\"getdiskinfo\",\"module\":\"Fileman\",\"data\":[{\"file_upload_max_bytes_humansize\":\"90.95\xC2\xA0TB\",\"file_upload_remain_humansize\":\"\xE2\x88\x9E\",\"spacelimit\":\"\xE2\x88\x9E\",\"spaceremain\":\"\xE2\x88\x9E\",\"spaceremain_humansize\":\"\xE2\x88\x9E\",\"file_upload_must_leave_bytes_humansize\":\"5\xC2\xA0MB\",\"filesused\":\"82\",\"file_upload_remain\":\"\xE2\x88\x9E\",\"spaceused\":\"339968\",\"fileslimit_humansize\":\"0\xC2\xA0bytes\",\"filesremain\":\"\xE2\x88\x9E\",\"filesremain_humansize\":\"\xE2\x88\x9E\",\"fileslimit\":\"0\",\"file_upload_max_bytes\":\"99999999999999\",\"spaceused_humansize\":\"332\xC2\xA0KB\",\"spacelimit_humansize\":\"\xE2\x88\x9E\",\"file_upload_must_leave_bytes\":\"5242880\",\"filesused_humansize\":\"82\xC2\xA0bytes\"}],\"event\":{\"result\":1}}}\n"
|
36
|
+
http_version:
|
37
|
+
recorded_at: Wed, 15 May 2013 04:18:01 GMT
|
38
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,38 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://myhost.com:2087/json-api/cpanel?checkleaf&cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=listfiles&cpanel_jsonapi_module=Fileman&cpanel_jsonapi_user=lumberg&dir&filelist&filepath&needmime&showdotfiles
|
6
|
+
body:
|
7
|
+
string: ""
|
8
|
+
headers:
|
9
|
+
Accept:
|
10
|
+
- "*/*"
|
11
|
+
Authorization:
|
12
|
+
- WHM root:iscool
|
13
|
+
User-Agent:
|
14
|
+
- Faraday v0.8.7
|
15
|
+
response:
|
16
|
+
status:
|
17
|
+
code: 200
|
18
|
+
message: OK
|
19
|
+
headers:
|
20
|
+
Date:
|
21
|
+
- Wed, 15 May 2013 04:22:40 GMT
|
22
|
+
X-Keep-Alive-Count:
|
23
|
+
- "1"
|
24
|
+
Server:
|
25
|
+
- cpsrvd/11.36.0.4
|
26
|
+
Content-Type:
|
27
|
+
- application/json; charset="utf-8"
|
28
|
+
Content-Length:
|
29
|
+
- "1784"
|
30
|
+
Keep-Alive:
|
31
|
+
- timeout=70, max=200
|
32
|
+
Connection:
|
33
|
+
- Keep-Alive
|
34
|
+
body:
|
35
|
+
string: "{\"cpanelresult\":{\"module\":\"Fileman\",\"event\":{\"result\":1},\"apiversion\":2,\"data\":[{\"mode\":16872,\"uid\":\"\",\"fullpath\":\"/home/lumberg/access-logs\",\"path\":\"/home/lumberg\",\"absdir\":\"/home/lumberg\",\"ctime\":\"1368589502\",\"gid\":520,\"file\":\"access-logs\",\"type\":\"dir\",\"humansize\":\"4\xC2\xA0KB\",\"mtime\":\"1367898732\",\"nicemode\":\"0750\",\"size\":\"4096\"},{\"mode\":16872,\"uid\":522,\"fullpath\":\"/home/lumberg/etc\",\"path\":\"/home/lumberg\",\"absdir\":\"/home/lumberg\",\"ctime\":\"1368078989\",\"gid\":12,\"file\":\"etc\",\"type\":\"dir\",\"humansize\":\"4\xC2\xA0KB\",\"mtime\":\"1368078989\",\"nicemode\":\"0750\",\"size\":\"4096\"},{\"mode\":16873,\"uid\":522,\"fullpath\":\"/home/lumberg/mail\",\"path\":\"/home/lumberg\",\"absdir\":\"/home/lumberg\",\"ctime\":\"1368587735\",\"gid\":520,\"file\":\"mail\",\"type\":\"dir\",\"humansize\":\"4\xC2\xA0KB\",\"mtime\":\"1368587735\",\"nicemode\":\"0751\",\"size\":\"4096\"},{\"mode\":16877,\"uid\":522,\"fullpath\":\"/home/lumberg/public_ftp\",\"path\":\"/home/lumberg\",\"absdir\":\"/home/lumberg\",\"ctime\":\"1367898145\",\"gid\":520,\"file\":\"public_ftp\",\"type\":\"dir\",\"humansize\":\"4\xC2\xA0KB\",\"mtime\":\"1367898145\",\"nicemode\":\"0755\",\"size\":\"4096\"},{\"mode\":16872,\"uid\":522,\"fullpath\":\"/home/lumberg/public_html\",\"path\":\"/home/lumberg\",\"absdir\":\"/home/lumberg\",\"ctime\":\"1368077995\",\"gid\":99,\"file\":\"public_html\",\"type\":\"dir\",\"humansize\":\"4\xC2\xA0KB\",\"mtime\":\"1368077995\",\"nicemode\":\"0750\",\"size\":\"4096\"},{\"mode\":16877,\"uid\":522,\"fullpath\":\"/home/lumberg/tmp\",\"path\":\"/home/lumberg\",\"absdir\":\"/home/lumberg\",\"ctime\":\"1368587735\",\"gid\":520,\"file\":\"tmp\",\"type\":\"dir\",\"humansize\":\"4\xC2\xA0KB\",\"mtime\":\"1368587735\",\"nicemode\":\"0755\",\"size\":\"4096\"},{\"mode\":16872,\"uid\":522,\"fullpath\":\"/home/lumberg/www\",\"path\":\"/home/lumberg\",\"absdir\":\"/home/lumberg\",\"ctime\":\"1368077995\",\"gid\":99,\"file\":\"www\",\"type\":\"dir\",\"humansize\":\"4\xC2\xA0KB\",\"mtime\":\"1368077995\",\"nicemode\":\"0750\",\"size\":\"4096\"}],\"func\":\"listfiles\"}}\n"
|
36
|
+
http_version:
|
37
|
+
recorded_at: Wed, 15 May 2013 04:17:59 GMT
|
38
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,77 @@
|
|
1
|
+
---
|
2
|
+
recorded_with: VCR 2.0.1
|
3
|
+
http_interactions:
|
4
|
+
- request:
|
5
|
+
method: get
|
6
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=fileop&cpanel_jsonapi_module=Fileman&cpanel_jsonapi_user=lumberg&destfiles=.someotherfile&doubledecode&op=copy&sourcefiles=.shouldneverexist
|
7
|
+
body:
|
8
|
+
string: ""
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.7
|
12
|
+
Authorization:
|
13
|
+
- WHM root:iscool
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Keep-Alive:
|
22
|
+
- timeout=70, max=200
|
23
|
+
Date:
|
24
|
+
- Wed, 12 Jun 2013 13:17:38 GMT
|
25
|
+
Content-Length:
|
26
|
+
- "260"
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset="utf-8"
|
29
|
+
Server:
|
30
|
+
- cpsrvd/11.36.0.4
|
31
|
+
X-Keep-Alive-Count:
|
32
|
+
- "1"
|
33
|
+
Connection:
|
34
|
+
- Keep-Alive
|
35
|
+
body:
|
36
|
+
string: |
|
37
|
+
{"cpanelresult":{"data":[{"result":0,"dest":"/home/lumberg/.someotherfile","src":"/home/lumberg/.shouldneverexist","err":"No such file or directory"}],"func":"fileop","module":"Fileman","event":{"result":1},"apiversion":2,"error":"No such file or directory"}}
|
38
|
+
|
39
|
+
http_version:
|
40
|
+
recorded_at: Wed, 12 Jun 2013 13:16:39 GMT
|
41
|
+
- request:
|
42
|
+
method: get
|
43
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=fileop&cpanel_jsonapi_module=Fileman&cpanel_jsonapi_user=lumberg&destfiles=sample-last-login.txt&doubledecode&op=copy&sourcefiles=.lastlogin
|
44
|
+
body:
|
45
|
+
string: ""
|
46
|
+
headers:
|
47
|
+
User-Agent:
|
48
|
+
- Faraday v0.8.7
|
49
|
+
Authorization:
|
50
|
+
- WHM root:iscool
|
51
|
+
Accept:
|
52
|
+
- "*/*"
|
53
|
+
response:
|
54
|
+
status:
|
55
|
+
code: 200
|
56
|
+
message: OK
|
57
|
+
headers:
|
58
|
+
Keep-Alive:
|
59
|
+
- timeout=70, max=200
|
60
|
+
Date:
|
61
|
+
- Wed, 12 Jun 2013 13:17:38 GMT
|
62
|
+
Content-Length:
|
63
|
+
- "190"
|
64
|
+
Content-Type:
|
65
|
+
- application/json; charset="utf-8"
|
66
|
+
Server:
|
67
|
+
- cpsrvd/11.36.0.4
|
68
|
+
X-Keep-Alive-Count:
|
69
|
+
- "1"
|
70
|
+
Connection:
|
71
|
+
- Keep-Alive
|
72
|
+
body:
|
73
|
+
string: |
|
74
|
+
{"cpanelresult":{"event":{"result":1},"module":"Fileman","apiversion":2,"func":"fileop","data":[{"dest":"/home/lumberg/sample-last-login.txt","src":"/home/lumberg/.lastlogin","result":1}]}}
|
75
|
+
|
76
|
+
http_version:
|
77
|
+
recorded_at: Wed, 12 Jun 2013 13:16:40 GMT
|
@@ -0,0 +1,40 @@
|
|
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=viewfile&cpanel_jsonapi_module=Fileman&cpanel_jsonapi_user=lumberg&dir&file=.lastlogin
|
6
|
+
body:
|
7
|
+
string: ""
|
8
|
+
headers:
|
9
|
+
Accept:
|
10
|
+
- "*/*"
|
11
|
+
Authorization:
|
12
|
+
- WHM root:iscool
|
13
|
+
User-Agent:
|
14
|
+
- Faraday v0.8.7
|
15
|
+
response:
|
16
|
+
status:
|
17
|
+
code: 200
|
18
|
+
message: OK
|
19
|
+
headers:
|
20
|
+
Date:
|
21
|
+
- Wed, 15 May 2013 04:22:40 GMT
|
22
|
+
X-Keep-Alive-Count:
|
23
|
+
- "1"
|
24
|
+
Server:
|
25
|
+
- cpsrvd/11.36.0.4
|
26
|
+
Content-Type:
|
27
|
+
- application/json; charset="utf-8"
|
28
|
+
Content-Length:
|
29
|
+
- "437"
|
30
|
+
Keep-Alive:
|
31
|
+
- timeout=70, max=200
|
32
|
+
Connection:
|
33
|
+
- Keep-Alive
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"func":"viewfile","apiversion":2,"data":[{"formatting_after":"</pre></div>","file":".lastlogin","dir":"/home/lumberg","mimename":"text-x-generic","contents":"192.168.25.11","formatting_before":"<div id=\"file_viewer\" style=\"border: 2px solid #ccc; background: #fff;\"><pre>","fileinfo":" ASCII text, with no line terminators\n","mimetype":"text/x-generic","filetype":"file"}],"module":"Fileman","event":{"result":1}}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Wed, 15 May 2013 04:17:59 GMT
|
40
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,38 @@
|
|
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=statfiles&cpanel_jsonapi_module=Fileman&cpanel_jsonapi_user=lumberg&dir&file=.lastlogin
|
6
|
+
body:
|
7
|
+
string: ""
|
8
|
+
headers:
|
9
|
+
Accept:
|
10
|
+
- "*/*"
|
11
|
+
Authorization:
|
12
|
+
- WHM root:iscool
|
13
|
+
User-Agent:
|
14
|
+
- Faraday v0.8.7
|
15
|
+
response:
|
16
|
+
status:
|
17
|
+
code: 200
|
18
|
+
message: OK
|
19
|
+
headers:
|
20
|
+
Date:
|
21
|
+
- Wed, 15 May 2013 04:22:41 GMT
|
22
|
+
X-Keep-Alive-Count:
|
23
|
+
- "1"
|
24
|
+
Server:
|
25
|
+
- cpsrvd/11.36.0.4
|
26
|
+
Content-Type:
|
27
|
+
- application/json; charset="utf-8"
|
28
|
+
Content-Length:
|
29
|
+
- "330"
|
30
|
+
Keep-Alive:
|
31
|
+
- timeout=70, max=200
|
32
|
+
Connection:
|
33
|
+
- Keep-Alive
|
34
|
+
body:
|
35
|
+
string: "{\"cpanelresult\":{\"func\":\"statfiles\",\"module\":\"Fileman\",\"apiversion\":2,\"data\":[{\"user\":\"lumberg\",\"group\":\"lumberg\",\"mimeinfo\":\"homeb\",\"type\":\"dir\",\"ctime\":\"1368587735\",\"size\":4096,\"path\":\"/home\",\"gid\":520,\"file\":\"lumberg\",\"nicemode\":\"0711\",\"mtime\":\"1368587735\",\"mode\":16841,\"humansize\":\"4\xC2\xA0KB\",\"uid\":\"522\"}],\"event\":{\"result\":1}}}\n"
|
36
|
+
http_version:
|
37
|
+
recorded_at: Wed, 15 May 2013 04:18:00 GMT
|
38
|
+
recorded_with: VCR 2.0.1
|
@@ -0,0 +1,40 @@
|
|
1
|
+
---
|
2
|
+
recorded_with: VCR 2.0.1
|
3
|
+
http_interactions:
|
4
|
+
- request:
|
5
|
+
method: get
|
6
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=number_of_public_keys&cpanel_jsonapi_module=Gpg&cpanel_jsonapi_user=lumberg
|
7
|
+
body:
|
8
|
+
string: ""
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.7
|
12
|
+
Authorization:
|
13
|
+
- WHM root:iscool
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Fri, 17 May 2013 04:11:03 GMT
|
23
|
+
Content-Length:
|
24
|
+
- "122"
|
25
|
+
Connection:
|
26
|
+
- Keep-Alive
|
27
|
+
Keep-Alive:
|
28
|
+
- timeout=70, max=200
|
29
|
+
Content-Type:
|
30
|
+
- application/json; charset="utf-8"
|
31
|
+
X-Keep-Alive-Count:
|
32
|
+
- "1"
|
33
|
+
Server:
|
34
|
+
- cpsrvd/11.36.0.4
|
35
|
+
body:
|
36
|
+
string: |
|
37
|
+
{"cpanelresult":{"module":"Gpg","apiversion":2,"data":[{"count":0}],"event":{"result":1},"func":"number_of_public_keys"}}
|
38
|
+
|
39
|
+
http_version:
|
40
|
+
recorded_at: Fri, 17 May 2013 04:06:10 GMT
|
@@ -0,0 +1,40 @@
|
|
1
|
+
---
|
2
|
+
recorded_with: VCR 2.0.1
|
3
|
+
http_interactions:
|
4
|
+
- request:
|
5
|
+
method: get
|
6
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=number_of_private_keys&cpanel_jsonapi_module=Gpg&cpanel_jsonapi_user=lumberg
|
7
|
+
body:
|
8
|
+
string: ""
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.7
|
12
|
+
Authorization:
|
13
|
+
- WHM root:iscool
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Fri, 17 May 2013 04:11:04 GMT
|
23
|
+
Content-Length:
|
24
|
+
- "123"
|
25
|
+
Connection:
|
26
|
+
- Keep-Alive
|
27
|
+
Keep-Alive:
|
28
|
+
- timeout=70, max=200
|
29
|
+
Content-Type:
|
30
|
+
- application/json; charset="utf-8"
|
31
|
+
X-Keep-Alive-Count:
|
32
|
+
- "1"
|
33
|
+
Server:
|
34
|
+
- cpsrvd/11.36.0.4
|
35
|
+
body:
|
36
|
+
string: |
|
37
|
+
{"cpanelresult":{"apiversion":2,"event":{"result":1},"data":[{"count":0}],"module":"Gpg","func":"number_of_private_keys"}}
|
38
|
+
|
39
|
+
http_version:
|
40
|
+
recorded_at: Fri, 17 May 2013 04:06:11 GMT
|
@@ -0,0 +1,40 @@
|
|
1
|
+
---
|
2
|
+
recorded_with: VCR 2.0.1
|
3
|
+
http_interactions:
|
4
|
+
- request:
|
5
|
+
method: get
|
6
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=listgpgkeys&cpanel_jsonapi_module=Gpg&cpanel_jsonapi_user=lumberg
|
7
|
+
body:
|
8
|
+
string: ""
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.7
|
12
|
+
Authorization:
|
13
|
+
- WHM root:iscool
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Fri, 17 May 2013 04:11:02 GMT
|
23
|
+
Content-Length:
|
24
|
+
- "101"
|
25
|
+
Connection:
|
26
|
+
- Keep-Alive
|
27
|
+
Keep-Alive:
|
28
|
+
- timeout=70, max=200
|
29
|
+
Content-Type:
|
30
|
+
- application/json; charset="utf-8"
|
31
|
+
X-Keep-Alive-Count:
|
32
|
+
- "1"
|
33
|
+
Server:
|
34
|
+
- cpsrvd/11.36.0.4
|
35
|
+
body:
|
36
|
+
string: |
|
37
|
+
{"cpanelresult":{"apiversion":2,"func":"listgpgkeys","event":{"result":1},"data":[],"module":"Gpg"}}
|
38
|
+
|
39
|
+
http_version:
|
40
|
+
recorded_at: Fri, 17 May 2013 04:06:10 GMT
|