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
data/spec/spec_helper.rb
CHANGED
@@ -5,10 +5,15 @@ require 'lumberg/exceptions'
|
|
5
5
|
require 'vcr'
|
6
6
|
require 'timeout'
|
7
7
|
|
8
|
-
|
8
|
+
# Load supporting files in spec/support
|
9
|
+
Dir["#{Lumberg::base_path}/../spec/support/**/*.rb"].each do |f|
|
10
|
+
require f
|
11
|
+
end
|
12
|
+
|
13
|
+
VCR.configure do |c|
|
9
14
|
c.cassette_library_dir = 'spec/vcr_cassettes'
|
10
|
-
c.
|
11
|
-
c.default_cassette_options = {:record => :
|
15
|
+
c.hook_into :webmock
|
16
|
+
c.default_cassette_options = {:record => :none, :serialize_with => :syck}
|
12
17
|
end
|
13
18
|
|
14
19
|
def live_test?
|
@@ -31,3 +36,4 @@ RSpec.configure do |c|
|
|
31
36
|
end
|
32
37
|
end
|
33
38
|
end
|
39
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
RSpec::Matchers.define :return_a_list do |method|
|
2
|
+
match do |subj|
|
3
|
+
subj[:params][:data].is_a?(Array)
|
4
|
+
end
|
5
|
+
|
6
|
+
failure_message_for_should do |subj|
|
7
|
+
"expected an Array at [:params][:data], got #{subj[:params][:data].class}"
|
8
|
+
end
|
9
|
+
|
10
|
+
failure_message_for_should_not do |subj|
|
11
|
+
"expected a non-Array at [:params][:data], got #{subj[:params][:data].class}"
|
12
|
+
end
|
13
|
+
|
14
|
+
description do
|
15
|
+
"return an Array at [:params][:data]"
|
16
|
+
end
|
17
|
+
end
|
@@ -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=addaddondomain&cpanel_jsonapi_module=AddonDomain&cpanel_jsonapi_user=lumberg&dir=public_html/test-magic.com/&newdomain=test-magic.com&subdomain=tmagic
|
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
|
+
- "330"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:48:34 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"data":[{"result":1,"reason":"Using nameservers with the following IPs: 204.13.161.145,204.13.160.143\ntest-magic.com was successfully parked on top of tmagic.lumberg-test.com"}],"module":"AddonDomain","apiversion":2,"event":{"result":1},"postevent":{"result":1},"preevent":{"result":1},"func":"addaddondomain"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:48:35 GMT
|
40
|
+
- request:
|
41
|
+
method: get
|
42
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=deladdondomain&cpanel_jsonapi_module=AddonDomain&cpanel_jsonapi_user=lumberg&domain=test-magic.com&subdomain=tmagic_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
|
+
Server:
|
60
|
+
- cpsrvd/11.32.6.3
|
61
|
+
Content-Length:
|
62
|
+
- "402"
|
63
|
+
X-Keep-Alive-Count:
|
64
|
+
- "1"
|
65
|
+
Connection:
|
66
|
+
- Keep-Alive
|
67
|
+
Date:
|
68
|
+
- Fri, 03 May 2013 13:48:43 GMT
|
69
|
+
Keep-Alive:
|
70
|
+
- timeout=70, max=200
|
71
|
+
body:
|
72
|
+
string: |
|
73
|
+
{"cpanelresult":{"event":{"result":1},"apiversion":2,"data":[{"result":1,"reason":"Deleted domain: tmagic.lumberg-test.com\nThe zone file for 'lumberg-test.com' has been edited and your new data has been added to it.\r\nsaved lumberg-test.com\nThe subdomain, tmagic.lumberg-test.com has been removed."}],"module":"AddonDomain","preevent":{"result":1},"postevent":{"result":1},"func":"deladdondomain"}}
|
74
|
+
|
75
|
+
http_version:
|
76
|
+
recorded_at: Fri, 03 May 2013 13:48:44 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=listaddondomains&cpanel_jsonapi_module=AddonDomain&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
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "163"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:48:44 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"preevent":{"result":1},"data":[],"func":"listaddondomains","apiversion":2,"event":{"result":1},"postevent":{"result":1},"module":"AddonDomain"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:48:44 GMT
|
40
|
+
- request:
|
41
|
+
method: get
|
42
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=listaddondomains&cpanel_jsonapi_module=AddonDomain&cpanel_jsonapi_user=minimal
|
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
|
+
- "163"
|
63
|
+
X-Keep-Alive-Count:
|
64
|
+
- "1"
|
65
|
+
Connection:
|
66
|
+
- Keep-Alive
|
67
|
+
Date:
|
68
|
+
- Fri, 03 May 2013 13:48:44 GMT
|
69
|
+
Keep-Alive:
|
70
|
+
- timeout=70, max=200
|
71
|
+
body:
|
72
|
+
string: |
|
73
|
+
{"cpanelresult":{"module":"AddonDomain","preevent":{"result":1},"event":{"result":1},"apiversion":2,"data":[],"postevent":{"result":1},"func":"listaddondomains"}}
|
74
|
+
|
75
|
+
http_version:
|
76
|
+
recorded_at: Fri, 03 May 2013 13:48:45 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=addaddondomain&cpanel_jsonapi_module=AddonDomain&cpanel_jsonapi_user=lumberg&dir=public_html/test-addon.com/&newdomain=test-addon.com&subdomain=testadd
|
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
|
+
- "258"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:48:15 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"data":[{"reason":"test-addon.com was successfully parked on top of testadd.lumberg-test.com","result":1}],"postevent":{"result":1},"preevent":{"result":1},"apiversion":2,"module":"AddonDomain","event":{"result":1},"func":"addaddondomain"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:48:16 GMT
|
40
|
+
- request:
|
41
|
+
method: get
|
42
|
+
uri: https://myhost.com:2087/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_func=deladdondomain&cpanel_jsonapi_module=AddonDomain&cpanel_jsonapi_user=lumberg&domain=test-addon.com&subdomain=testadd_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
|
+
Server:
|
60
|
+
- cpsrvd/11.32.6.3
|
61
|
+
Content-Length:
|
62
|
+
- "404"
|
63
|
+
X-Keep-Alive-Count:
|
64
|
+
- "1"
|
65
|
+
Connection:
|
66
|
+
- Keep-Alive
|
67
|
+
Date:
|
68
|
+
- Fri, 03 May 2013 13:48:24 GMT
|
69
|
+
Keep-Alive:
|
70
|
+
- timeout=70, max=200
|
71
|
+
body:
|
72
|
+
string: |
|
73
|
+
{"cpanelresult":{"event":{"result":1},"apiversion":2,"module":"AddonDomain","preevent":{"result":1},"func":"deladdondomain","data":[{"result":1,"reason":"Deleted domain: testadd.lumberg-test.com\nThe zone file for 'lumberg-test.com' has been edited and your new data has been added to it.\r\nsaved lumberg-test.com\nThe subdomain, testadd.lumberg-test.com has been removed."}],"postevent":{"result":1}}}
|
74
|
+
|
75
|
+
http_version:
|
76
|
+
recorded_at: Fri, 03 May 2013 13:48:25 GMT
|
77
|
+
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=listfullbackups&cpanel_jsonapi_module=Backups&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
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "419"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:46:45 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"postevent":{"result":1},"func":"listfullbackups","module":"Backups","preevent":{"result":1},"apiversion":2,"event":{"result":1},"data":[{"localtime":"Wed Sep 26 14:21:14 2012","status":"complete","time":"1348687274","file":"backup-9.26.2012_14-21-14_lumberg.tar.gz"},{"localtime":"Wed Sep 26 14:21:50 2012","status":"complete","time":"1348687310","file":"backup-9.26.2012_14-21-50_lumberg.tar.gz"}]}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:46:46 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=accountmanagelist&cpanel_jsonapi_module=BoxTrapper&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
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "1070"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:48:45 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"data":[{"enabled":0,"account":"account-test@lumberg-test.com","accounturi":"account-test%40lumberg-test.com","bg":"even","status":"disabled"},{"enabled":0,"account":"disk-usage-test@lumberg-test.com","accounturi":"disk-usage-test%40lumberg-test.com","bg":"odd","status":"disabled"},{"enabled":0,"account":"filters-test@lumberg-test.com","accounturi":"filters-test%40lumberg-test.com","bg":"even","status":"disabled"},{"enabled":0,"account":"lumberg","accounturi":"lumberg","bg":"odd","status":"disabled"},{"enabled":0,"account":"mail-dir-test@lumberg-test.com","accounturi":"mail-dir-test%40lumberg-test.com","bg":"even","status":"disabled"},{"enabled":0,"account":"mail-dirs-test@lumberg-test.com","accounturi":"mail-dirs-test%40lumberg-test.com","bg":"odd","status":"disabled"},{"enabled":0,"account":"test-account@lumberg-test.com","accounturi":"test-account%40lumberg-test.com","bg":"even","status":"disabled"}],"event":{"result":1},"func":"accountmanagelist","apiversion":2,"preevent":{"result":1},"postevent":{"result":1},"module":"BoxTrapper"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:48:45 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=applist&cpanel_jsonapi_module=Branding&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
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "151"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:47:51 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"apiversion":2,"postevent":{"result":1},"event":{"result":1},"preevent":{"result":1},"module":"Branding","data":[],"func":"applist"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:47:51 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=listimgtypes&cpanel_jsonapi_module=Branding&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
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "156"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:47:51 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"preevent":{"result":1},"apiversion":2,"func":"listimgtypes","data":[],"event":{"result":1},"postevent":{"result":1},"module":"Branding"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:47:52 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=listobjecttypes&cpanel_jsonapi_module=Branding&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
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "159"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:47:51 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"data":[],"postevent":{"result":1},"apiversion":2,"func":"listobjecttypes","event":{"result":1},"module":"Branding","preevent":{"result":1}}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:47:52 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=showpkgs&cpanel_jsonapi_module=Branding&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
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "152"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:47:50 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"data":[],"preevent":{"result":1},"apiversion":2,"module":"Branding","event":{"result":1},"postevent":{"result":1},"func":"showpkgs"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:47:51 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=spritelist&cpanel_jsonapi_module=Branding&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
|
+
Server:
|
23
|
+
- cpsrvd/11.32.6.3
|
24
|
+
Content-Length:
|
25
|
+
- "208"
|
26
|
+
X-Keep-Alive-Count:
|
27
|
+
- "1"
|
28
|
+
Connection:
|
29
|
+
- Keep-Alive
|
30
|
+
Date:
|
31
|
+
- Fri, 03 May 2013 13:47:50 GMT
|
32
|
+
Keep-Alive:
|
33
|
+
- timeout=70, max=200
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"postevent":{"result":1},"apiversion":2,"data":[{"images":null,"spriteurl":"/cPanel_magic_revision_/"}],"module":"Branding","func":"spritelist","preevent":{"result":1},"event":{"result":1}}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Fri, 03 May 2013 13:47:51 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=displaycontactinfo&cpanel_jsonapi_module=CustInfo&cpanel_jsonapi_user=lumberg
|
6
|
+
body:
|
7
|
+
string: ""
|
8
|
+
headers:
|
9
|
+
Authorization:
|
10
|
+
- WHM root:iscool
|
11
|
+
Accept:
|
12
|
+
- "*/*"
|
13
|
+
User-Agent:
|
14
|
+
- Faraday v0.8.7
|
15
|
+
response:
|
16
|
+
status:
|
17
|
+
code: 200
|
18
|
+
message: OK
|
19
|
+
headers:
|
20
|
+
Date:
|
21
|
+
- Thu, 16 May 2013 06:22:30 GMT
|
22
|
+
Server:
|
23
|
+
- cpsrvd/11.36.0.4
|
24
|
+
Content-Length:
|
25
|
+
- "1027"
|
26
|
+
Connection:
|
27
|
+
- Keep-Alive
|
28
|
+
X-Keep-Alive-Count:
|
29
|
+
- "1"
|
30
|
+
Keep-Alive:
|
31
|
+
- timeout=70, max=200
|
32
|
+
Content-Type:
|
33
|
+
- application/json; charset="utf-8"
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"data":[{"type":"string","name":"email","descp":"Email address that you can be contacted at. This should be an email address that is not on your account if you have one.","enabled":1,"value":"testing@lumberg-test.com"},{"type":"string","name":"second_email","descp":"If you wish to provide a second email address to receive notifications, enter it here.","enabled":1,"value":""},{"type":"boolean","name":"notify_disk_limit","descp":"Send notifications to your contact email address when you are reaching your disk quota.","enabled":0,"value":1},{"type":"boolean","name":"notify_bandwidth_limit","descp":"Send notifications to your contact email address when you are reaching your bandwidth usage limit.","enabled":1,"value":1},{"type":"boolean","name":"notify_email_quota_limit","descp":"Send notifications to your contact email address when one of your email accounts approaches or is over quota.","enabled":0,"value":1}],"apiversion":2,"module":"CustInfo","event":{"result":1},"func":"displaycontactinfo"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Thu, 16 May 2013 06:17:42 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=savecontactinfo&cpanel_jsonapi_module=CustInfo&cpanel_jsonapi_user=lumberg&email=testing@lumberg-test.com¬ify_bandwidth_limit=1¬ify_disk_limit¬ify_email_quota_limit
|
6
|
+
body:
|
7
|
+
string: ""
|
8
|
+
headers:
|
9
|
+
Authorization:
|
10
|
+
- WHM root:iscool
|
11
|
+
Accept:
|
12
|
+
- "*/*"
|
13
|
+
User-Agent:
|
14
|
+
- Faraday v0.8.7
|
15
|
+
response:
|
16
|
+
status:
|
17
|
+
code: 200
|
18
|
+
message: OK
|
19
|
+
headers:
|
20
|
+
Date:
|
21
|
+
- Thu, 16 May 2013 06:22:30 GMT
|
22
|
+
Server:
|
23
|
+
- cpsrvd/11.36.0.4
|
24
|
+
Content-Length:
|
25
|
+
- "1008"
|
26
|
+
Connection:
|
27
|
+
- Keep-Alive
|
28
|
+
X-Keep-Alive-Count:
|
29
|
+
- "1"
|
30
|
+
Keep-Alive:
|
31
|
+
- timeout=70, max=200
|
32
|
+
Content-Type:
|
33
|
+
- application/json; charset="utf-8"
|
34
|
+
body:
|
35
|
+
string: |
|
36
|
+
{"cpanelresult":{"event":{"result":1},"module":"CustInfo","apiversion":2,"data":[{"display_value":"off","descp":"Send notifications to your contact email address when you are reaching your disk quota.","value":0,"name":"notify_disk_limit"},{"display_value":"testing@lumberg-test.com","descp":"Email address that you can be contacted at. This should be an email address that is not on your account if you have one.","value":"testing@lumberg-test.com","name":"email"},{"display_value":"off","descp":"Send notifications to your contact email address when one of your email accounts approaches or is over quota.","value":0,"name":"notify_email_quota_limit"},{"display_value":"","descp":"If you wish to provide a second email address to receive notifications, enter it here.","value":"","name":"second_email"},{"display_value":"on","descp":"Send notifications to your contact email address when you are reaching your bandwidth usage limit.","value":1,"name":"notify_bandwidth_limit"}],"func":"savecontactinfo"}}
|
37
|
+
|
38
|
+
http_version:
|
39
|
+
recorded_at: Thu, 16 May 2013 06:17:43 GMT
|
40
|
+
recorded_with: VCR 2.0.1
|