update image not fix

This commit is contained in:
Valentin CZERYBA 2023-04-04 00:00:28 +02:00
parent 501876dac2
commit 404ad5dd6c

View File

@ -80,20 +80,20 @@ class WPimport:
r = requests.get("http://{0}/wp-json/wp/v2/media".format(self._wordpress), auth=self._basic, params=params)
if r.status_code == 200:
res = r.json()
if len(res) == 0:
url = "http://{0}/wp-json/wp/v2/media".format(self._wordpress)
if len(res) > 0:
url = "http://{0}/wp-json/wp/v2/media/{1}".format(self._wordpress, res[0]["id"])
print(url)
data = page.content
img_type = "image/png"
if img_name.split(".")[1] == "jpg" or img_name.split(".")[1] == "jpeg":
img_type = "image/jpg"
headers={ 'Content-Type': img_type,'Content-Disposition' : 'attachment; filename={0}'.format(img_name)}
r = requests.post("http://{0}/wp-json/wp/v2/media".format(self._wordpress), auth=self._basic, headers=headers, data=data)
if r.status_code == 201:
r = requests.post(url, auth=self._basic, headers=headers, data=data)
if r.status_code == 201 or r.status_code == 200:
res = r.json()
media["id"] = res["id"]
media["rendered"] = res["guid"]["rendered"]
else:
media["id"] = res[0]["id"]
media["rendered"] = res[0]["guid"]["rendered"]
return media
## Add or Update post