Simple Linux Panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mdserver-web/plugins/qbittorrent/workers/qbittorrent_worker.py

193 lines
5.2 KiB

6 years ago
#!/usr/bin/env python
# encoding: utf-8
"""
6 years ago
下载检测
6 years ago
"""
import hashlib
import os
import time
import datetime
import traceback
import sys
import json
import socket
import threading
from hashlib import sha1
from random import randint
from struct import unpack
from socket import inet_ntoa
from threading import Timer, Thread
from time import sleep
reload(sys)
sys.setdefaultencoding("utf8")
6 years ago
sys.path.append('/usr/local/lib/python2.7/site-packages')
# import pygeoip
import MySQLdb as mdb
6 years ago
from configparser import ConfigParser
cp = ConfigParser()
cp.read("../qb.conf")
section_db = cp.sections()[0]
DB_HOST = cp.get(section_db, "DB_HOST")
DB_USER = cp.get(section_db, "DB_USER")
DB_PORT = cp.getint(section_db, "DB_PORT")
DB_PASS = cp.get(section_db, "DB_PASS")
DB_NAME = cp.get(section_db, "DB_NAME")
section_qb = cp.sections()[1]
QB_HOST = cp.get(section_qb, "QB_HOST")
QB_PORT = cp.get(section_qb, "QB_PORT")
QB_USER = cp.get(section_qb, "QB_USER")
QB_PWD = cp.get(section_qb, "QB_PWD")
6 years ago
section_file = cp.sections()[2]
FILE_TO = cp.get(section_file, "FILE_TO")
6 years ago
class downloadBT(Thread):
def __init__(self):
Thread.__init__(self)
self.setDaemon(True)
self.dbconn = mdb.connect(
DB_HOST, DB_USER, DB_PASS, DB_NAME, port=DB_PORT, charset='utf8')
self.dbconn.autocommit(False)
self.dbcurr = self.dbconn.cursor()
self.dbcurr.execute('SET NAMES utf8')
self.qb = self.qb()
def query(self, sql):
self.dbcurr.execute(sql)
result = self.dbcurr.fetchall()
data = map(list, result)
return data
def qb(self):
from qbittorrent import Client
url = 'http://' + QB_HOST + ':' + QB_PORT + '/'
qb = Client(url)
qb.login(QB_USER, QB_PWD)
return qb
def execShell(self, cmdstring, cwd=None, timeout=None, shell=True):
import subprocess
if shell:
cmdstring_list = cmdstring
else:
cmdstring_list = shlex.split(cmdstring)
if timeout:
end_time = datetime.datetime.now() + datetime.timedelta(seconds=timeout)
sub = subprocess.Popen(cmdstring_list, cwd=cwd, stdin=subprocess.PIPE,
shell=shell, bufsize=4096, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
while sub.poll() is None:
time.sleep(0.1)
if timeout:
if end_time <= datetime.datetime.now():
raise Exception("Timeout:%s" % cmdstring)
return sub.communicate()
def md5(self, str):
# 生成MD5
try:
m = hashlib.md5()
m.update(str)
return m.hexdigest()
except:
return False
6 years ago
def ffmpeg(self, file=''):
md5file = self.md5(file)
6 years ago
m3u8_dir = FILE_TO + '/m3u8/' + md5file[0:6]
6 years ago
os.system('mkdir -p ' + m3u8_dir)
6 years ago
m3u8_file = m3u8_dir + '/' + md5file[0:6] + '.m3u8'
6 years ago
tofile = FILE_TO + '/m3u8/' + md5file[0:6] + '/%03d.ts'
cmd = 'ffmpeg -i ' + file + ' -c copy -map 0 -f segment -segment_list ' + \
6 years ago
m3u8_file + ' -segment_time 5 ' + tofile
print cmd
data = self.execShell(cmd)
if data[0] != '':
print data
def file_arr(self, path, filters=['.DS_Store']):
file_list = []
flist = os.listdir(path)
# print flist
for i in range(len(flist)):
file_path = os.path.join(path, flist[i])
if flist[i] in filters:
continue
if os.path.isdir(file_path):
tmp = self.file_arr(file_path, filters)
file_list.extend(tmp)
else:
file_list.append(file_path)
return file_list
def file_video(self, path, has=['.mp4']):
flist = self.file_arr(path)
video = []
for i in range(len(flist)):
t = os.path.splitext(flist[i])
if t[1] in has:
video.append(flist[i])
return video
def video_do(self, path):
vlist = self.file_video(path)
for i in range(len(vlist)):
self.ffmpeg(vlist[i])
return ''
6 years ago
def checkTask(self):
while True:
torrents = self.qb.torrents()
for torrent in torrents:
print torrent
print time.time(), "no task!"
time.sleep(10)
def completed(self):
6 years ago
while True:
6 years ago
torrents = self.qb.torrents(filter='completed')
tlen = len(torrents)
print "torrents count:", tlen
if tlen > 0:
for torrent in torrents:
6 years ago
path = torrent['save_path'] + torrent['name']
self.video_do(path)
# print torrent
print time.time(), "done task!"
else:
print time.time(), "no task!"
time.sleep(3)
6 years ago
6 years ago
def test():
6 years ago
while True:
6 years ago
print time.time(), "no download task!",
6 years ago
time.sleep(1)
6 years ago
test()
6 years ago
if __name__ == "__main__":
6 years ago
dl = downloadBT()
import threading
6 years ago
# t = threading.Thread(target=dl.checkTask)
# t.start()
completed = threading.Thread(target=dl.completed)
completed.start()
6 years ago
6 years ago
# test()