lumberg 1.0.1 → 2.0.0.pre4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.travis.yml +8 -7
- data/LICENSE +1 -1
- data/README.md +130 -23
- data/Rakefile +3 -1
- data/lib/lumberg/config.rb +19 -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 +206 -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/cpanel.rb +29 -0
- data/lib/lumberg/format_whm.rb +125 -0
- data/lib/lumberg/version.rb +1 -1
- data/lib/lumberg/whm/account.rb +28 -105
- data/lib/lumberg/whm/base.rb +3 -7
- data/lib/lumberg/whm/cert.rb +76 -0
- data/lib/lumberg/whm/dns.rb +49 -77
- data/lib/lumberg/whm/reseller.rb +24 -117
- data/lib/lumberg/whm/server.rb +111 -230
- data/lib/lumberg/whm.rb +2 -1
- data/lib/lumberg.rb +34 -8
- data/lumberg.gemspec +7 -4
- data/spec/config_spec.rb +28 -0
- 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 +148 -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 +9 -3
- 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 +43 -0
- data/spec/vcr_cassettes/cpanel/ssl/gencsr.yml +43 -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/account/accountsummary.yml +41 -29
- data/spec/vcr_cassettes/whm/account/changepackage.yml +73 -43
- data/spec/vcr_cassettes/whm/account/createacct.yml +101 -31
- data/spec/vcr_cassettes/whm/account/domainuserdata.yml +43 -29
- data/spec/vcr_cassettes/whm/account/editquota.yml +78 -57
- data/spec/vcr_cassettes/whm/account/limitbw.yml +79 -57
- data/spec/vcr_cassettes/whm/account/listaccts.yml +195 -100
- data/spec/vcr_cassettes/whm/account/listsuspended.yml +41 -29
- data/spec/vcr_cassettes/whm/account/modifyacct.yml +61 -42
- data/spec/vcr_cassettes/whm/account/myprivs.yml +41 -29
- data/spec/vcr_cassettes/whm/account/passwd.yml +44 -29
- data/spec/vcr_cassettes/whm/account/removeacct.yml +134 -57
- data/spec/vcr_cassettes/whm/account/restoreaccount.yml +310 -135
- data/spec/vcr_cassettes/whm/account/setsiteip.yml +166 -127
- data/spec/vcr_cassettes/whm/account/suspend.yml +75 -43
- data/spec/vcr_cassettes/whm/account/unsuspend.yml +46 -29
- data/spec/vcr_cassettes/whm/cert/fetchsslinfo.yml +38 -0
- data/spec/vcr_cassettes/whm/cert/generatessl.yml +94 -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/dns/adddns.yml +61 -43
- data/spec/vcr_cassettes/whm/dns/addzonerecord.yml +42 -29
- data/spec/vcr_cassettes/whm/dns/dumpzone.yml +44 -29
- data/spec/vcr_cassettes/whm/dns/editzonerecord.yml +61 -43
- data/spec/vcr_cassettes/whm/dns/getzonerecord.yml +60 -43
- data/spec/vcr_cassettes/whm/dns/killdns.yml +42 -29
- data/spec/vcr_cassettes/whm/dns/listmxs.yml +23 -15
- data/spec/vcr_cassettes/whm/dns/listzones.yml +22 -15
- data/spec/vcr_cassettes/whm/dns/lookupnsip.yml +40 -29
- data/spec/vcr_cassettes/whm/dns/removezonerecord.yml +61 -43
- data/spec/vcr_cassettes/whm/dns/resetzone.yml +42 -29
- data/spec/vcr_cassettes/whm/dns/resolvedomainname.yml +40 -29
- data/spec/vcr_cassettes/whm/dns/savemxs.yml +23 -15
- data/spec/vcr_cassettes/whm/reseller/acctcounts.yml +41 -29
- data/spec/vcr_cassettes/whm/reseller/listacls.yml +22 -15
- data/spec/vcr_cassettes/whm/reseller/listresellers.yml +22 -15
- data/spec/vcr_cassettes/whm/reseller/resellerstats.yml +42 -29
- data/spec/vcr_cassettes/whm/reseller/saveacllist.yml +76 -57
- data/spec/vcr_cassettes/whm/reseller/setacls.yml +40 -29
- data/spec/vcr_cassettes/whm/reseller/setresellerips.yml +42 -28
- data/spec/vcr_cassettes/whm/reseller/setresellerlimits.yml +41 -29
- data/spec/vcr_cassettes/whm/reseller/setresellermainip.yml +59 -43
- data/spec/vcr_cassettes/whm/reseller/setresellernameservers.yml +58 -43
- data/spec/vcr_cassettes/whm/reseller/setresellerpackagelimit.yml +61 -43
- data/spec/vcr_cassettes/whm/reseller/setupreseller.yml +41 -29
- data/spec/vcr_cassettes/whm/reseller/suspendreseller.yml +75 -44
- data/spec/vcr_cassettes/whm/reseller/terminatereseller.yml +83 -46
- data/spec/vcr_cassettes/whm/reseller/unsetupreseller.yml +41 -29
- data/spec/vcr_cassettes/whm/reseller/unsuspendreseller.yml +46 -29
- data/spec/vcr_cassettes/whm/server/addip.yml +24 -15
- data/spec/vcr_cassettes/whm/server/applist.yml +22 -15
- data/spec/vcr_cassettes/whm/server/delip.yml +23 -15
- data/spec/vcr_cassettes/whm/server/gethostname.yml +22 -15
- data/spec/vcr_cassettes/whm/server/getlanglist.yml +22 -15
- data/spec/vcr_cassettes/whm/server/gettweaksetting.yml +44 -0
- data/spec/vcr_cassettes/whm/server/listips.yml +22 -15
- data/spec/vcr_cassettes/whm/server/loadavg.yml +26 -19
- data/spec/vcr_cassettes/whm/server/my_function.yml +59 -43
- data/spec/vcr_cassettes/whm/server/nvget.yml +22 -15
- data/spec/vcr_cassettes/whm/server/nvset.yml +22 -15
- data/spec/vcr_cassettes/whm/server/reboot.yml +22 -15
- data/spec/vcr_cassettes/whm/server/sethostname.yml +24 -15
- data/spec/vcr_cassettes/whm/server/setresolvers.yml +23 -15
- data/spec/vcr_cassettes/whm/server/settweaksetting.yml +44 -0
- data/spec/vcr_cassettes/whm/server/showbw.yml +22 -15
- data/spec/vcr_cassettes/whm/server/systemloadavg.yml +40 -29
- data/spec/vcr_cassettes/whm/server/themes.yml +38 -0
- data/spec/vcr_cassettes/whm/server/version.yml +22 -15
- data/spec/whm/account_spec.rb +40 -199
- data/spec/whm/base_spec.rb +0 -4
- data/spec/whm/cert_spec.rb +99 -0
- data/spec/whm/dns_spec.rb +5 -123
- data/spec/whm/reseller_spec.rb +11 -79
- data/spec/whm/server_spec.rb +85 -142
- metadata +367 -47
- data/.rvmrc +0 -49
- data/lib/lumberg/whm/args.rb +0 -113
- data/lib/net_http_hacked.rb +0 -42
- data/spec/vcr_cassettes/whm/server/response_type.yml +0 -85
- data/spec/whm/args_spec.rb +0 -179
@@ -0,0 +1,73 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://myhost.com:2087/json-api/cpanel?arg-0=test-list&arg-1=s3cr3t5&arg-2=lumberg-test.com&cpanel_jsonapi_apiversion=1&cpanel_jsonapi_func=addlist&cpanel_jsonapi_module=Email&cpanel_jsonapi_user=lumberg
|
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
|
+
- "571"
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 16:47:34 GMT
|
32
|
+
Server:
|
33
|
+
- cpsrvd/11.32.6.3
|
34
|
+
body:
|
35
|
+
string: "{\"apiversion\":\"1\",\"type\":\"event\",\"module\":\"Email\",\"func\":\"addlist\",\"source\":\"module\",\"data\":{\"result\":\"Creating an email list creates multiple email forwarders and one is being used already.<br />\\nA forwarder already exists for owner-test-list@lumberg-test.com.<br /><br />\\nYou must delete this forwarder before creating the list test-list.\\n\"},\"preevent\":{\"result\":1},\"postevent\":{\"result\":1},\"event\":{\"result\":1},\"error\":\"The requested mailing list address, test-list@lumberg-test.com, conflicts with the forwarder owner-test-list@lumberg-test.com@lumberg-test.com.\"}"
|
36
|
+
http_version:
|
37
|
+
recorded_at: Fri, 03 May 2013 16:47:34 GMT
|
38
|
+
- request:
|
39
|
+
method: get
|
40
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=listlists&cpanel_jsonapi_module=Email&cpanel_jsonapi_user=lumberg
|
41
|
+
body:
|
42
|
+
string: ""
|
43
|
+
headers:
|
44
|
+
User-Agent:
|
45
|
+
- Faraday v0.8.7
|
46
|
+
Accept:
|
47
|
+
- "*/*"
|
48
|
+
Authorization:
|
49
|
+
- WHM root:iscool
|
50
|
+
response:
|
51
|
+
status:
|
52
|
+
code: 200
|
53
|
+
message: OK
|
54
|
+
headers:
|
55
|
+
Content-Type:
|
56
|
+
- text/plain; charset="utf-8"
|
57
|
+
X-Keep-Alive-Count:
|
58
|
+
- "1"
|
59
|
+
Keep-Alive:
|
60
|
+
- timeout=70, max=200
|
61
|
+
Connection:
|
62
|
+
- Keep-Alive
|
63
|
+
Content-Length:
|
64
|
+
- "463"
|
65
|
+
Date:
|
66
|
+
- Fri, 03 May 2013 16:47:34 GMT
|
67
|
+
Server:
|
68
|
+
- cpsrvd/11.32.6.3
|
69
|
+
body:
|
70
|
+
string: "{\"cpanelresult\":{\"data\":[{\"humandiskused\":\"21.04\xC2\xA0KB\",\"desthost\":\"mail.lumberg-test.com\",\"listid\":\"add-test_lumberg-test.com\",\"diskused\":\"21542\",\"list\":\"add-test@lumberg-test.com\"},{\"humandiskused\":\"21.04\xC2\xA0KB\",\"desthost\":\"mail.lumberg-test.com\",\"listid\":\"test-list_lumberg-test.com\",\"diskused\":\"21548\",\"list\":\"test-list@lumberg-test.com\"}],\"module\":\"Email\",\"preevent\":{\"result\":1},\"event\":{\"result\":1},\"postevent\":{\"result\":1},\"apiversion\":2,\"func\":\"listlists\"}}\n"
|
71
|
+
http_version:
|
72
|
+
recorded_at: Fri, 03 May 2013 16:47:35 GMT
|
73
|
+
recorded_with: VCR 2.0.1
|
@@ -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=checkmaindiscard&cpanel_jsonapi_module=Email&cpanel_jsonapi_user=lumberg
|
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
|
+
- "169"
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 16:47:32 GMT
|
32
|
+
Server:
|
33
|
+
- cpsrvd/11.32.6.3
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"func":"checkmaindiscard","event":{"result":1},"module":"Email","apiversion":2,"data":[{"status":1}],"preevent":{"result":1},"postevent":{"result":1}}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 16:47:33 GMT
|
40
|
+
recorded_with: VCR 2.0.1
|
@@ -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=listmxs&cpanel_jsonapi_module=Email&cpanel_jsonapi_user=lumberg
|
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
|
+
- "743"
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 16:47:49 GMT
|
32
|
+
Server:
|
33
|
+
- cpsrvd/11.32.6.3
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"preevent":{"result":1},"data":[{"mx":"lumberg-test.com","detected":"remote","entries":[{"entrycount":1,"mx":"lumberg-test.com","domain":"lumberg-test.com","row":"odd","priority":0}],"statusmsg":"Fetched MX List","alwaysaccept":0,"domain":"lumberg-test.com","status":1,"remote":0,"mxcheck":"remote","local":0,"secondary":0},{"mx":"sub.lumberg-test.com","detected":"auto","entries":[{"entrycount":1,"mx":"sub.lumberg-test.com","domain":"sub.lumberg-test.com","row":"odd","priority":0}],"statusmsg":"Fetched MX List","alwaysaccept":0,"domain":"sub.lumberg-test.com","status":1,"remote":0,"mxcheck":"auto","local":0,"secondary":0}],"func":"listmxs","event":{"result":1},"postevent":{"result":1},"module":"Email","apiversion":2}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 16:47:50 GMT
|
40
|
+
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=delpop&cpanel_jsonapi_module=Email&cpanel_jsonapi_user=lumberg&domain=lumberg-test.com&email=account-test@lumberg-test.com
|
7
|
+
body:
|
8
|
+
string: ""
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- "*/*"
|
12
|
+
User-Agent:
|
13
|
+
- Faraday v0.8.7
|
14
|
+
Authorization:
|
15
|
+
- WHM root:iscool
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Wed, 15 May 2013 03:15:36 GMT
|
23
|
+
Connection:
|
24
|
+
- Keep-Alive
|
25
|
+
Content-Length:
|
26
|
+
- "140"
|
27
|
+
Server:
|
28
|
+
- cpsrvd/11.36.0.4
|
29
|
+
Content-Type:
|
30
|
+
- application/json; charset="utf-8"
|
31
|
+
Keep-Alive:
|
32
|
+
- timeout=70, max=200
|
33
|
+
X-Keep-Alive-Count:
|
34
|
+
- "1"
|
35
|
+
body:
|
36
|
+
string: |
|
37
|
+
{"cpanelresult":{"event":{"result":1},"apiversion":2,"func":"delpop","module":"Email","data":[{"reason":"OK","rawout":"\n\n","result":1}]}}
|
38
|
+
|
39
|
+
http_version:
|
40
|
+
recorded_at: Wed, 15 May 2013 03:10:55 GMT
|
41
|
+
- request:
|
42
|
+
method: get
|
43
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=listpopswithdisk&cpanel_jsonapi_module=Email&cpanel_jsonapi_user=lumberg
|
44
|
+
body:
|
45
|
+
string: ""
|
46
|
+
headers:
|
47
|
+
Accept:
|
48
|
+
- "*/*"
|
49
|
+
User-Agent:
|
50
|
+
- Faraday v0.8.7
|
51
|
+
Authorization:
|
52
|
+
- WHM root:iscool
|
53
|
+
response:
|
54
|
+
status:
|
55
|
+
code: 200
|
56
|
+
message: OK
|
57
|
+
headers:
|
58
|
+
Date:
|
59
|
+
- Wed, 15 May 2013 03:15:36 GMT
|
60
|
+
Connection:
|
61
|
+
- Keep-Alive
|
62
|
+
Content-Length:
|
63
|
+
- "108"
|
64
|
+
Server:
|
65
|
+
- cpsrvd/11.36.0.4
|
66
|
+
Content-Type:
|
67
|
+
- application/json; charset="utf-8"
|
68
|
+
Keep-Alive:
|
69
|
+
- timeout=70, max=200
|
70
|
+
X-Keep-Alive-Count:
|
71
|
+
- "1"
|
72
|
+
body:
|
73
|
+
string: |
|
74
|
+
{"cpanelresult":{"data":[],"event":{"result":1},"func":"listpopswithdisk","apiversion":2,"module":"Email"}}
|
75
|
+
|
76
|
+
http_version:
|
77
|
+
recorded_at: Wed, 15 May 2013 03:10:56 GMT
|
@@ -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=local&domain=lumberg-test.com&mxcheck=local
|
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
|
+
- "476"
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 16:47:54 GMT
|
32
|
+
Server:
|
33
|
+
- cpsrvd/11.32.6.3
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"preevent":{"result":1},"postevent":{"result":1},"module":"Email","event":{"result":1},"data":[{"secondary":0,"results":"Set Always Accept Status to: local","status":1,"local":1,"detected":"local","remote":0,"statusmsg":"Set Always Accept Status to: local","mxcheck":"local","checkmx":{"isprimary":1,"secondary":0,"changed":1,"local":1,"detected":"local","warnings":[],"remote":0,"issecondary":0,"mxcheck":"local"}}],"func":"setalwaysaccept","apiversion":2}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 16:47:55 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
|
+
- "437"
|
67
|
+
Date:
|
68
|
+
- Fri, 03 May 2013 16:47:56 GMT
|
69
|
+
Server:
|
70
|
+
- cpsrvd/11.32.6.3
|
71
|
+
body:
|
72
|
+
string: |
|
73
|
+
{"cpanelresult":{"preevent":{"result":1},"apiversion":2,"func":"listmxs","module":"Email","data":[{"mx":"lumberg-test.com","mxcheck":"local","remote":0,"status":1,"entries":[{"priority":0,"row":"odd","entrycount":1,"mx":"lumberg-test.com","domain":"lumberg-test.com"}],"statusmsg":"Fetched MX List","alwaysaccept":1,"domain":"lumberg-test.com","local":0,"secondary":0,"detected":"local"}],"event":{"result":1},"postevent":{"result":1}}}
|
74
|
+
|
75
|
+
http_version:
|
76
|
+
recorded_at: Fri, 03 May 2013 16:47:56 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?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
|