10 Commits

Author SHA1 Message Date
9ab484da8d Merge pull request 'fix-export' (#26) from fix-export into master
Reviewed-on: #26
2023-09-15 21:43:35 +00:00
c275f10fb0 test ok for featured media 2023-09-15 23:38:35 +02:00
fa1854052b fix if 2023-09-15 23:14:24 +02:00
0e5afe60a7 add image featured media 2023-09-15 23:13:08 +02:00
d2cfb949f8 add image for featured image 2023-09-15 23:11:25 +02:00
bce1643135 fix replace 2023-09-14 21:27:09 +02:00
0c94783852 fix album author 2023-09-14 21:23:27 +02:00
6f78a48e57 fix index 2023-09-11 23:20:48 +02:00
dbab60c7dc fix import album 2023-09-11 23:20:22 +02:00
dce2c2dfa5 Merge pull request 'fix webpage' (#25) from fix-export into master
Reviewed-on: #25
2023-09-05 20:10:07 +00:00

View File

@@ -141,7 +141,7 @@ class WPimport:
def _getInfoAlbum(self, link): def _getInfoAlbum(self, link):
if self._ssl_canalblog: if self._ssl_canalblog:
link = link.replace("http", "https") link = link.replace("http", "https").replace("httpss", "https")
self._logger.info("{0} : Info album : {1}".format(self._name, link)) self._logger.info("{0} : Info album : {1}".format(self._name, link))
link_o = urlparse(link) link_o = urlparse(link)
if len(link_o.netloc) > 0: if len(link_o.netloc) > 0:
@@ -162,14 +162,17 @@ class WPimport:
if os.path.exists("{0}/..{1}".format(self._directory, link_o)): if os.path.exists("{0}/..{1}".format(self._directory, link_o)):
page_img = open("{0}/..{1}".format(self._directory, link_o), "r") page_img = open("{0}/..{1}".format(self._directory, link_o), "r")
soup = BeautifulSoup(page_img, self._parser) soup = BeautifulSoup(page_img, self._parser)
paragraph = soup.find("div", class_="albumbody").find("p") paragraphs = soup.find("div", class_="albumbody").find_all("p")
self._logger.info("{0} get paragraph : {1}".format(self._name, paragraph)) for paragraph in paragraphs:
split_paragraph = str(paragraph).split("<br>") self._logger.info("{0} get paragraph : {1}".format(self._name, paragraph))
self._logger.info("{0} length paragraph splitted : {1}".format(self._name, len(split_paragraph))) split_paragraph = str(paragraph).split("<br>")
if len(split_paragraph) == 1: self._logger.info("{0} length paragraph splitted : {1}".format(self._name, len(split_paragraph)))
split_paragraph = str(paragraph).split("<br/>") if len(split_paragraph) == 1:
self._logger.info("{0} get paragraph splitted : {1}".format(self._name, split_paragraph)) split_paragraph = str(paragraph).split("<br/>")
author = split_paragraph[1].split(":")[1].replace(" ", "").lower() self._logger.info("{0} get paragraph splitted : {1}".format(self._name, split_paragraph))
if len(split_paragraph) > 1:
if len(split_paragraph[1].split(":")) > 1:
author = split_paragraph[1].split(":")[1].replace(" ", "").lower()
return author return author
@@ -458,6 +461,21 @@ class WPimport:
self._logger.error("{0} : Exception error for post media featured : {1}".format(self._name, err)) self._logger.error("{0} : Exception error for post media featured : {1}".format(self._name, err))
else: else:
self._logger.info("{0} : No media found for {1}".format(self._name, h2)) self._logger.info("{0} : No media found for {1}".format(self._name, h2))
try:
page = self._request.get(img_src.replace("_q", ""))
if page.status_code == 200:
self._logger.info("{0} : Get image for media featured : {1}".format(self._name, img_src.replace("_q", "")))
media = self._addOrUpdateMedia(img_src.replace("_q", ""), page)
if media["id"] != "":
self._addOrUpdateFeaturedMedia(soup)
else:
self._logger.error("{0} : Connection error with status code for get image for featured media : {1}".format(self._name, page.status_code))
self._logger.debug("{0} : {1}".format(self._name, page.content))
except ConnectionError as err:
self._logger.error("{0} : Connection error for get to image for featured media : {1}".format(self._name, err))
exit(1)
except Exception as err:
self._logger.error("{0} : Exception error for get to image media featured : {1}".format(self._name, err))
else: else:
self._logger.error("{0} : Connection error with status code for search featured media: {1}".format(self._name, page.status_code)) self._logger.error("{0} : Connection error with status code for search featured media: {1}".format(self._name, page.status_code))
self._logger.debug("{0} : {1}".format(self._name, page.content)) self._logger.debug("{0} : {1}".format(self._name, page.content))