forked from public/mirror-checker
parent
fb7337457e
commit
ce3e8f907a
@ -1,26 +1,64 @@ |
||||
""" |
||||
Contains trisquel class |
||||
""" |
||||
|
||||
import os |
||||
from project import Project |
||||
from shared import CSC_MIRROR |
||||
from bs4 import BeautifulSoup |
||||
import requests |
||||
import datefinder # another date finding library |
||||
from datetime import timedelta |
||||
from datetime import datetime |
||||
import re |
||||
import pandas as pd |
||||
import datefinder # another date finding library |
||||
from project import Project |
||||
from shared import CSC_MIRROR |
||||
|
||||
class trisquel(Project): |
||||
"""trisquel class""" |
||||
@staticmethod |
||||
def check(data, project, current_time): |
||||
page = requests.get(data[project]["upstream"]).text |
||||
indexOfFile = page.find("mirror.csclub.uwaterloo.ca") |
||||
def checker(directory_URL, file_name): |
||||
page = requests.get(directory_URL).text |
||||
file_index = page.find(file_name) |
||||
# print(page) |
||||
|
||||
if file_index == -1: |
||||
return False |
||||
|
||||
str_dates = re.findall(r'(\d{2}-\w{3}-\d{4} \d{2}:\d{2})|(\d{4}-\d{2}-\d{2} \d{2}:\d{2})', page[file_index:]) |
||||
|
||||
m = re.search(r'(\d+ hour)|(\d+ hours)|(\d+(\.)?\d+ days)', page[indexOfFile:]) # solution from: https://stackoverflow.com/questions/21074100/how-to-convert-standard-timedelta-string-to-timedelta-object/21074460 |
||||
return list(datefinder.find_dates("".join(str_dates[0])))[0] |
||||
|
||||
duration = pd.to_timedelta(m.group(0)) |
||||
@classmethod |
||||
def scrape(cls, site1, site2): |
||||
# getting the request from url |
||||
r1 = requests.get(site1) |
||||
r2 = requests.get(site2) |
||||
|
||||
# converting the text |
||||
s1 = BeautifulSoup(r1.text,"html.parser") |
||||
s2 = BeautifulSoup(r2.text,"html.parser") |
||||
|
||||
hrefs1 = [i.attrs['href'] for i in s1.find_all("a")] |
||||
hrefs2 = [i.attrs['href'] for i in s2.find_all("a")] |
||||
|
||||
for href in hrefs1: # for a href directories |
||||
if href.endswith("/") and href != "../" and href != "/" and not href.startswith("/"): |
||||
print(href) |
||||
if href not in hrefs2: |
||||
return False |
||||
elif cls.checker(site1+href, "Release") > cls.checker(site2+href, "Release"): |
||||
return False |
||||
return True |
||||
|
||||
@classmethod |
||||
def check_iso(cls, site, mirrors): |
||||
for mirror in mirrors: |
||||
if cls.checker(site, "md5sum.txt") < cls.checker(mirror, "md5sum.txt"): |
||||
print(cls.checker(site, "md5sum.txt")) |
||||
print(cls.checker(mirror, "md5sum.txt")) |
||||
return False |
||||
return True |
||||
|
||||
@classmethod |
||||
def check(cls, data, project): |
||||
"""Check if project packages are up-to-date""" |
||||
|
||||
csc_url = CSC_MIRROR + data[project]["csc"] + data[project]["file"] |
||||
upstream_url = data[project]["upstream"] + data[project]["file"] |
||||
|
||||
# print(cls.check_iso(upstream_url+"slackware-iso/", csc_url+"slackware-iso/")) |
||||
mirrors = data[project]["mirrors"] |
||||
|
||||
return duration <= pd.to_timedelta(data[project]["out_of_sync_interval"], unit='s') |
||||
return cls.scrape(upstream_url, csc_url+"packages/dists/") and cls.check_iso(csc_url+"iso/", mirrors) |
Loading…
Reference in new issue