2016-02-05 16:15:09 +01:00
|
|
|
#!/usr/bin/env python2
|
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
import time
|
|
|
|
from packages import Paste
|
2016-02-10 16:39:06 +01:00
|
|
|
from pubsublogger import publisher
|
2016-02-05 16:15:09 +01:00
|
|
|
from Helper import Process
|
|
|
|
import re
|
|
|
|
|
2016-02-10 16:39:06 +01:00
|
|
|
if __name__ == "__main__":
|
|
|
|
publisher.port = 6380
|
|
|
|
publisher.channel = "Script"
|
|
|
|
config_section = "Release"
|
|
|
|
p = Process(config_section)
|
|
|
|
publisher.info("Release scripts to find release names")
|
2016-02-05 16:15:09 +01:00
|
|
|
|
2016-02-10 16:39:06 +01:00
|
|
|
movie = "[a-zA-Z0-9.]+\.[0-9]{4}.[a-zA-Z0-9.]+\-[a-zA-Z]+"
|
|
|
|
tv = "[a-zA-Z0-9.]+\.S[0-9]{2}E[0-9]{2}.[a-zA-Z0-9.]+\.[a-zA-Z0-9.]+\-[a-zA-Z0-9]+"
|
|
|
|
xxx = "[a-zA-Z0-9._]+.XXX.[a-zA-Z0-9.]+\-[a-zA-Z0-9]+"
|
2016-02-05 16:15:09 +01:00
|
|
|
|
2016-02-10 16:39:06 +01:00
|
|
|
regexs = [movie, tv, xxx]
|
2016-02-05 16:15:09 +01:00
|
|
|
|
2016-02-10 16:39:06 +01:00
|
|
|
regex = '|'.join(regexs)
|
|
|
|
while True:
|
|
|
|
filepath = p.get_from_set()
|
|
|
|
if filepath is None:
|
|
|
|
publisher.debug("Script Release is Idling 10s")
|
|
|
|
print 'Sleeping'
|
|
|
|
time.sleep(10)
|
|
|
|
continue
|
2016-02-05 16:15:09 +01:00
|
|
|
|
2016-02-10 16:39:06 +01:00
|
|
|
paste = Paste.Paste(filepath)
|
|
|
|
content = paste.get_p_content()
|
|
|
|
releases = set(re.findall(regex, content))
|
|
|
|
if len(releases) == 0:
|
|
|
|
continue
|
2016-02-05 16:15:09 +01:00
|
|
|
|
2016-10-27 11:50:24 +02:00
|
|
|
to_print = 'Release;{};{};{};{} releases;{}'.format(paste.p_source, paste.p_date, paste.p_name, len(releases), paste.p_path)
|
2016-02-10 16:39:06 +01:00
|
|
|
if len(releases) > 30:
|
|
|
|
publisher.warning(to_print)
|
|
|
|
else:
|
|
|
|
publisher.info(to_print)
|