-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplanethoster.js
More file actions
95 lines (93 loc) · 2.76 KB
/
Copy pathplanethoster.js
File metadata and controls
95 lines (93 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
require('dotenv').config();
const axios = require("axios");
const BASE_URL = process.env.BASE_URL || "https://api.planethoster.net";
const API_USER = process.env.API_USER;
const API_KEY = process.env.API_KEY;
const API_SANDBOX = process.env.API_SANDBOX || 0;
module.exports = {
getWorldAccount: () => axios({
method:"GET",
url : BASE_URL + `/world-api/get-accounts/`,
headers: {
"X-API-USER": API_USER,
"X-API-KEY": API_KEY,
"X-API-SANDBOX": API_SANDBOX
}
}),
createWorldAccount: (domain, country) => axios({
method:"POST",
url : BASE_URL + `/world-api/create-account`,
headers: {
"Content-Type": "application/json",
"X-API-USER": API_USER,
"X-API-KEY": API_KEY,
"X-API-SANDBOX": API_SANDBOX
},
data: JSON.stringify({
domain: domain,
country: country
})
}),
modifyWorldAccount: (id, cpu, mem, io) => axios({
method:"POST",
url : BASE_URL + `/world-api/modify-resources`,
headers: {
"Content-Type": "application/json",
"X-API-USER": API_USER,
"X-API-KEY": API_KEY,
"X-API-SANDBOX": API_SANDBOX
},
data: JSON.stringify({
id: id,
cpu: cpu,
mem: mem,
io: io,
})
}),
getAvailablePhpVersions: (id) => axios({
method:"GET",
url : BASE_URL + `/n0c-api/php-version`,
headers: {
"Content-Type": "application/json",
"X-API-USER": API_USER,
"X-API-KEY": API_KEY,
"X-API-SANDBOX": API_SANDBOX
},
data: JSON.stringify({
id: id
})
}),
getWordpress: (id) => axios({
method:"GET",
url : BASE_URL + `/n0c-api/wordpress`,
headers: {
"Content-Type": "application/json",
"X-API-USER": API_USER,
"X-API-KEY": API_KEY,
"X-API-SANDBOX": API_SANDBOX
},
data: JSON.stringify({
id: id
})
}),
createWordpress: (id, adminUser, adminPassword, adminEmail, domain, path, title, locale) => axios({
method:"POST",
url : BASE_URL + `/n0c-api/wordpress/add`,
headers: {
"Content-Type": "application/json",
"X-API-USER": API_USER,
"X-API-KEY": API_KEY,
"X-API-SANDBOX": API_SANDBOX
},
data: JSON.stringify({
id: id,
adminUser: adminUser,
adminPassword: adminPassword,
adminEmail: adminEmail,
domain: domain,
path: path,
title: title,
locale: locale,
})
})
}