fixed payload

This commit is contained in:
Shailaja Kumari 2024-06-07 19:21:12 +05:30
parent f1d1387dd6
commit 718af51a04
Signed by: shailaja
GPG Key ID: 2B9455CAFBC4D75A

View File

@ -47,21 +47,34 @@ class ServerData:
def create_post_data(self):
ram, disk = self.get_ram_and_disk()
cpu_count = self.get_cpu_count()
bandwidth = self.get_bandwidth()
os_id = self.get_os()
post_data = {
'hostname': self.hostname,
'public_ip': self.public_ip,
'ram': ram,
'disk': disk,
'cpu_count': cpu_count,
'bandwidth': bandwidth,
'os_id': os_id
"server_type": 1,
"os_id": self.get_os(),
"provider_id": 10,
"location_id": 15,
"ssh_port": 22,
"ram": ram >> 10, # convert to GB
"ram_as_mb": ram, # in MB
"disk": disk, # in GB
"disk_as_gb": disk, # in GB
"cpu": self.get_cpu_count(),
"bandwidth": self.get_bandwidth(),
"was_promo": 1,
"active": 1,
"show_public": 0,
"owned_since": "2022-01-01",
"ram_type": "GB",
"disk_type": "GB",
"currency": "USD",
"price": 4,
"payment_term": 1,
"hostname": self.hostname,
"next_due_date": "2022-02-01",
"ns1": self.nameservers[0] if self.nameservers else "",
"ns2": self.nameservers[1] if len(self.nameservers) > 1 else "",
"ip1": self.public_ip,
}
logging.info(f"Post Data: {post_data}")
logging.info("Post data created")
return post_data