main.py 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694
  1. from fastapi import FastAPI,Cookie, Depends, Query, status,File, UploadFile,Request,Response,HTTPException
  2. from fastapi.templating import Jinja2Templates
  3. from fastapi.responses import HTMLResponse, RedirectResponse, JSONResponse
  4. from typing import List, Optional
  5. from os.path import isfile, isdir, join
  6. import threading
  7. import zhtts
  8. import os
  9. import urllib
  10. import requests
  11. from bs4 import BeautifulSoup
  12. from PIL import Image,ImageDraw,ImageFont
  13. import pyttsx3
  14. import rpyc
  15. import random
  16. import time
  17. import math
  18. import hashlib
  19. import re
  20. import asyncio
  21. import urllib.request
  22. from fastapi.responses import FileResponse
  23. from fastapi.middleware.cors import CORSMiddleware
  24. import dataset
  25. from datetime import datetime, timedelta
  26. from util.swap_face import swap_face
  27. from fastapi.staticfiles import StaticFiles
  28. import shutil
  29. import io
  30. from first import first
  31. from passlib.context import CryptContext
  32. from jose import JWTError, jwt
  33. from fastapi_jwt_auth import AuthJWT
  34. from fastapi_jwt_auth.exceptions import AuthJWTException
  35. from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm
  36. import models
  37. import pymysql
  38. from first import first
  39. import mailer
  40. from moviepy.editor import VideoFileClip
  41. import traceback
  42. import logging
  43. import gSlide
  44. pymysql.install_as_MySQLdb()
  45. app = FastAPI()
  46. app.add_middleware(
  47. CORSMiddleware,
  48. allow_origins=["*"],
  49. allow_credentials=True,
  50. allow_methods=["*"],
  51. allow_headers=["*"],
  52. )
  53. SECRET_KEY = "df2f77bd544240801a048bd4293afd8eeb7fff3cb7050e42c791db4b83ebadcd"
  54. ALGORITHM = "HS256"
  55. ACCESS_TOKEN_EXPIRE_MINUTES = 300
  56. pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
  57. app.mount("/static", StaticFiles(directory="static"), name="static")
  58. app.mount("/static/img", StaticFiles(directory="static/img"), name="static/img")
  59. app.mount("/templates", StaticFiles(directory="templates"), name="templates")
  60. templates = Jinja2Templates(directory="templates")
  61. oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token")
  62. tmp_video_dir = '../OpenshotService/tmp_video/'
  63. tmp_avatar_dir = '../../face_swap/tmp_avatar/' #change source face path here
  64. video_sub_folder = 'ai_anchor_video/'
  65. avatar_sub_folder = 'swap_save/'
  66. tmp_img_sub_folder = 'tmp_img/'
  67. img_upload_folder = '/var/www/html/'+tmp_img_sub_folder
  68. video_dest = '/var/www/html/'+video_sub_folder
  69. avatar_dest = '/var/www/html/'+avatar_sub_folder
  70. # @app.get("/index2")
  71. # async def index2():
  72. # return FileResponse('static/index2.html')
  73. @app.get("/index_eng")
  74. async def index2():
  75. return FileResponse('static/index_eng.html')
  76. # home page
  77. @app.get("/index", response_class=HTMLResponse)
  78. async def get_home_page(request: Request, response: Response):
  79. return templates.TemplateResponse("index.html", {"request": request, "response": response})
  80. @app.get("/", response_class=HTMLResponse)
  81. async def get_home_page(request: Request, response: Response):
  82. return templates.TemplateResponse("index.html", {"request": request, "response": response})
  83. @app.get("/make_video", response_class=HTMLResponse)
  84. async def get_home_page(request: Request, response: Response, Authorize: AuthJWT = Depends()):
  85. try:
  86. Authorize.jwt_required()
  87. except Exception as e:
  88. print(e)
  89. return '請先登入帳號'
  90. current_user = Authorize.get_jwt_subject()
  91. return templates.TemplateResponse("make_video.html", {"request": request, "response": response})
  92. @app.get("/make_video_long", response_class=HTMLResponse)
  93. async def get_home_page(request: Request, response: Response, Authorize: AuthJWT = Depends()):
  94. try:
  95. Authorize.jwt_required()
  96. except Exception as e:
  97. print(e)
  98. return '請先登入帳號'
  99. current_user = Authorize.get_jwt_subject()
  100. return templates.TemplateResponse("make_video_long.html", {"request": request, "response": response})
  101. @app.get("/make_video_slide", response_class=HTMLResponse)
  102. async def make_video_slide(request: Request, response: Response, Authorize: AuthJWT = Depends()):
  103. try:
  104. Authorize.jwt_required()
  105. except Exception as e:
  106. print(e)
  107. return '請先登入帳號'
  108. current_user = Authorize.get_jwt_subject()
  109. return templates.TemplateResponse("make_video_slide.html", {"request": request, "response": response})
  110. @app.get('/user_profile', response_class=HTMLResponse)
  111. def protected(request: Request, Authorize: AuthJWT = Depends()):
  112. Authorize.jwt_required()
  113. current_user = Authorize.get_jwt_subject()
  114. return current_user
  115. # login & register page
  116. @app.get("/login", response_class=HTMLResponse)
  117. async def get_login_and_register_page(request: Request):
  118. return templates.TemplateResponse("login.html", {"request": request})
  119. @app.post("/login")
  120. async def login_for_access_token(request: Request, form_data: OAuth2PasswordRequestForm = Depends(), Authorize: AuthJWT = Depends()):
  121. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  122. user = authenticate_user(form_data.username, form_data.password)
  123. if not user:
  124. raise HTTPException(
  125. status_code=status.HTTP_401_UNAUTHORIZED,
  126. detail="Incorrect username or password",
  127. headers={"WWW-Authenticate": "Bearer"},
  128. )
  129. access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)
  130. access_token = create_access_token(
  131. data={"sub": user.username}, expires_delta=access_token_expires
  132. )
  133. table = db['users']
  134. user.token = access_token
  135. table.update(dict(user), ['username'])
  136. access_token = Authorize.create_access_token(subject=user.username)
  137. refresh_token = Authorize.create_refresh_token(subject=user.username)
  138. Authorize.set_access_cookies(access_token)
  139. Authorize.set_refresh_cookies(refresh_token)
  140. #return templates.TemplateResponse("index.html", {"request": request, "msg": 'Login'})
  141. return {"access_token": access_token, "token_type": "bearer"}
  142. @app.post("/token")
  143. async def access_token(form_data: OAuth2PasswordRequestForm = Depends(), Authorize: AuthJWT = Depends()):
  144. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  145. user = authenticate_user(form_data.username, form_data.password)
  146. if not user:
  147. raise HTTPException(
  148. status_code=status.HTTP_401_UNAUTHORIZED,
  149. detail="Incorrect username or password",
  150. headers={"WWW-Authenticate": "Bearer"},
  151. )
  152. access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)
  153. access_token = create_access_token(
  154. data={"sub": user.username}, expires_delta=access_token_expires
  155. )
  156. return {"access_token": access_token, "token_type": "bearer"}
  157. @app.post("/register")
  158. async def register(request: Request):
  159. user = models.User(**await request.form())
  160. user_register(user)
  161. return templates.TemplateResponse("login.html", {'request': request,"success": True}, status_code=status.HTTP_302_FOUND)
  162. @app.get('/user_profile', response_class=HTMLResponse)
  163. def protected(request: Request, Authorize: AuthJWT = Depends()):
  164. Authorize.jwt_required()
  165. current_user = Authorize.get_jwt_subject()
  166. return current_user
  167. @app.get('/logout')
  168. def logout(request: Request, Authorize: AuthJWT = Depends()):
  169. Authorize.jwt_required()
  170. Authorize.unset_jwt_cookies()
  171. return {"msg": "Successfully logout"}
  172. @app.get("/gen_avatar")
  173. async def avatar():
  174. return FileResponse('static/gen_avatar.html')
  175. @app.post("/swapFace")
  176. async def swapFace(req:models.swap_req):
  177. if 'http' not in req.imgurl:
  178. req.imgurl= 'http://'+req.imgurl
  179. try:
  180. im = Image.open(requests.get(req.imgurl, stream=True).raw)
  181. im= im.convert("RGB")
  182. except:
  183. return {'msg':"無法辨別圖片網址"+req.imgurl}
  184. name_hash = str(time.time()).replace('.','')
  185. x = threading.Thread(target=gen_avatar, args=(name_hash,req.imgurl))
  186. x.start()
  187. return {'msg':'人物生成中,請稍候'}
  188. @app.post("/uploadfile/")
  189. async def create_upload_file(file: UploadFile = File(...)):
  190. img_name = str(time.time()).replace('.','')
  191. try:
  192. contents = await file.read()
  193. image = Image.open(io.BytesIO(contents))
  194. image= image.convert("RGB")
  195. image.save(img_upload_folder+img_name+'.jpg')
  196. except Exception as e:
  197. print(e)
  198. return {'msg':'檔案無法使用'}
  199. return {"msg": 'www.choozmo.com:8168/'+tmp_img_sub_folder+img_name+'.jpg'}
  200. @app.post("/make_anchor_video_gSlide")
  201. async def make_anchor_video_gSlide(req:models.gSlide_req,token: str = Depends(oauth2_scheme)):
  202. name, text_content, image_urls = gSlide.parse_slide_url(req.slide_url,eng=False)
  203. if len(image_urls) != len(text_content):
  204. return {'msg':'副標題數量、圖片(影片)數量以及台詞數量必須一致'}
  205. for idx in range(len(image_urls)):
  206. if 'http' not in image_urls[idx]:
  207. image_urls[idx] = 'http://'+image_urls[idx]
  208. if req.multiLang==0:
  209. for txt in text_content:
  210. if re.search('[a-zA-Z]', txt) !=None:
  211. print('語言錯誤')
  212. return {'msg':'輸入字串不能包含英文字!'}
  213. name_hash = str(time.time()).replace('.','')
  214. for imgu in image_urls:
  215. try:
  216. if get_url_type(imgu) =='video/mp4':
  217. r=requests.get(imgu)
  218. else:
  219. im = Image.open(requests.get(imgu, stream=True).raw)
  220. im= im.convert("RGB")
  221. except:
  222. return {'msg':"無法辨別圖片網址"+imgu}
  223. user_id = get_user_id(token)
  224. proto_req = models.request_normal()
  225. proto_req.text_content = text_content
  226. proto_req.name = name
  227. proto_req.image_urls = image_urls
  228. proto_req.avatar = req.avatar
  229. proto_req.multiLang = req.multiLang
  230. save_history(proto_req,name_hash,user_id)
  231. x = threading.Thread(target=gen_video_queue, args=(name_hash,name, text_content, image_urls,int(req.avatar),req.multiLang,user_id))
  232. x.start()
  233. return {"msg":"製作影片需要時間,請您耐心等候,成果會傳送至LINE群組中"}
  234. @app.post("/make_anchor_video_long")
  235. async def make_anchor_video_long(req:models.request,token: str = Depends(oauth2_scheme)):
  236. if len(req.image_urls) != len(req.text_content):
  237. return {'msg':'副標題數量、圖片(影片)數量以及台詞數量必須一致'}
  238. for idx in range(len(req.image_urls)):
  239. if 'http' not in req.image_urls[idx]:
  240. req.image_urls[idx] = 'http://'+req.image_urls[idx]
  241. if req.multiLang==0:
  242. for txt in req.text_content:
  243. if re.search('[a-zA-Z]', txt) !=None:
  244. print('語言錯誤')
  245. return {'msg':'輸入字串不能包含英文字!'}
  246. name_hash = str(time.time()).replace('.','')
  247. for imgu in req.image_urls:
  248. try:
  249. if get_url_type(imgu) =='video/mp4':
  250. r=requests.get(imgu)
  251. else:
  252. im = Image.open(requests.get(imgu, stream=True).raw)
  253. im= im.convert("RGB")
  254. except:
  255. return {'msg':"無法辨別圖片網址"+imgu}
  256. user_id = get_user_id(token)
  257. save_history(req,name_hash,user_id)
  258. x = threading.Thread(target=gen_video_long_queue, args=(name_hash,req.name, req.text_content, req.image_urls,int(req.avatar),req.multiLang,user_id))
  259. x.start()
  260. return {"msg":"製作影片需要時間,請您耐心等候,成果會傳送至LINE群組中"}
  261. @app.post("/make_anchor_video")
  262. async def make_anchor_video(req:models.request,token: str = Depends(oauth2_scheme)):
  263. if len(req.image_urls) != len(req.text_content):
  264. return {'msg':'副標題數量、圖片(影片)數量以及台詞數量必須一致'}
  265. for idx in range(len(req.image_urls)):
  266. if 'http' not in req.image_urls[idx]:
  267. req.image_urls[idx] = 'http://'+req.image_urls[idx]
  268. if req.multiLang==0:
  269. for txt in req.text_content:
  270. if re.search('[a-zA-Z]', txt) !=None:
  271. print('語言錯誤')
  272. return {'msg':'輸入字串不能包含英文字!'}
  273. name_hash = str(time.time()).replace('.','')
  274. for imgu in req.image_urls:
  275. try:
  276. if get_url_type(imgu) =='video/mp4':
  277. r=requests.get(imgu)
  278. else:
  279. im = Image.open(requests.get(imgu, stream=True).raw)
  280. im= im.convert("RGB")
  281. except:
  282. return {'msg':"無法辨別圖片網址"+imgu}
  283. user_id = get_user_id(token)
  284. save_history(req,name_hash,user_id)
  285. x = threading.Thread(target=gen_video_queue, args=(name_hash,req.name, req.text_content, req.image_urls,int(req.avatar),req.multiLang,user_id))
  286. x.start()
  287. return {"msg":"製作影片需要時間,請您耐心等候,成果會傳送至LINE群組中"}
  288. @app.post("/make_anchor_video_eng")
  289. async def make_anchor_video_eng(req:models.request_eng):
  290. if len(req.image_urls) != len(req.sub_titles) or len(req.sub_titles) != len(req.text_content):
  291. return {'msg':'副標題數量、圖片(影片)數量以及台詞數量必須一致'}
  292. for idx in range(len(req.image_urls)):
  293. if 'http' not in req.image_urls[idx]:
  294. req.image_urls[idx] = 'http://'+req.image_urls[idx]
  295. name_hash = str(time.time()).replace('.','')
  296. for imgu in req.image_urls:
  297. try:
  298. if get_url_type(imgu) =='video/mp4':
  299. r=requests.get(imgu)
  300. else:
  301. im = Image.open(requests.get(imgu, stream=True).raw)
  302. im= im.convert("RGB")
  303. except:
  304. return {'msg':"無法辨別圖片網址"+imgu}
  305. save_history(req,name_hash)
  306. x = threading.Thread(target=gen_video_queue_eng, args=(name_hash,req.name, req.text_content, req.image_urls,req.sub_titles,int(req.avatar)))
  307. x.start()
  308. return {"msg":"製作影片需要時間,請您耐心等候,成果會傳送至LINE群組中"}
  309. @app.get("/history_input")
  310. async def history_input(request: Request, Authorize: AuthJWT = Depends()):
  311. Authorize.jwt_required()
  312. current_user = Authorize.get_jwt_subject()
  313. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  314. user_id = first(db.query('SELECT * FROM users where username="' + current_user +'"'))['id']
  315. statement = 'SELECT * FROM history_input WHERE user_id="'+str(user_id)+'" ORDER BY timestamp DESC LIMIT 50'
  316. logs = []
  317. for row in db.query(statement):
  318. logs.append({'id':row['id'],'name':row['name'],'text_content':row['text_content'].split(','),'link':row['link'],'image_urls':row['image_urls'].split(',')})
  319. return logs
  320. @AuthJWT.load_config
  321. def get_config():
  322. return models.Settings()
  323. @app.exception_handler(AuthJWTException)
  324. def authjwt_exception_handler(request: Request, exc: AuthJWTException):
  325. return JSONResponse(
  326. status_code=exc.status_code,
  327. content={"detail": exc.message}
  328. )
  329. def get_user_id(token):
  330. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  331. credentials_exception = HTTPException(
  332. status_code=status.HTTP_401_UNAUTHORIZED,
  333. detail="Could not validate credentials",
  334. headers={"WWW-Authenticate": "Bearer"},
  335. )
  336. try:
  337. payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM])
  338. username: str = payload.get("sub")
  339. if username is None:
  340. raise credentials_exception
  341. token_data = models.TokenData(username=username)
  342. except JWTError:
  343. raise credentials_exception
  344. user = get_user(username=token_data.username)
  345. if user is None:
  346. raise credentials_exception
  347. user_id = first(db.query('SELECT * FROM users where username="' + user.username+'"'))['id']
  348. return user_id
  349. def check_user_exists(username):
  350. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  351. if int(next(iter(db.query('SELECT COUNT(*) FROM AI_anchor.users WHERE username = "'+username+'"')))['COUNT(*)']) > 0:
  352. return True
  353. else:
  354. return False
  355. def get_user(username: str):
  356. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  357. if not check_user_exists(username): # if user don't exist
  358. return False
  359. user_dict = next(
  360. iter(db.query('SELECT * FROM AI_anchor.users where username ="'+username+'"')))
  361. user = models.User(**user_dict)
  362. return user
  363. def user_register(user):
  364. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  365. table = db['users']
  366. user.password = get_password_hash(user.password)
  367. table.insert(dict(user))
  368. def get_password_hash(password):
  369. return pwd_context.hash(password)
  370. def verify_password(plain_password, hashed_password):
  371. return pwd_context.verify(plain_password, hashed_password)
  372. def authenticate_user(username: str, password: str):
  373. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  374. if not check_user_exists(username): # if user don't exist
  375. return False
  376. user_dict = next(iter(db.query('SELECT * FROM AI_anchor.users where username ="'+username+'"')))
  377. user = models.User(**user_dict)
  378. if not verify_password(password, user.password):
  379. return False
  380. return user
  381. def create_access_token(data: dict, expires_delta: Optional[timedelta] = None):
  382. to_encode = data.copy()
  383. if expires_delta:
  384. expire = datetime.utcnow() + expires_delta
  385. else:
  386. expire = datetime.utcnow() + timedelta(minutes=15)
  387. to_encode.update({"exp": expire})
  388. encoded_jwt = jwt.encode(to_encode, SECRET_KEY, algorithm=ALGORITHM)
  389. return encoded_jwt
  390. def save_history(req,name_hash,user_id):
  391. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  392. log_table = db['history_input']
  393. txt_content_seperate_by_dot = ''
  394. for txt in req.text_content:
  395. txt_content_seperate_by_dot += txt+","
  396. txt_content_seperate_by_dot = txt_content_seperate_by_dot[:-1]
  397. img_urls_seperate_by_dot = ''
  398. for iurl in req.image_urls:
  399. img_urls_seperate_by_dot += iurl+","
  400. img_urls_seperate_by_dot = img_urls_seperate_by_dot[:-1]
  401. time_stamp = datetime.fromtimestamp(time.time())
  402. time_stamp = time_stamp.strftime("%Y-%m-%d %H:%M:%S")
  403. pk = log_table.insert({'name':req.name,'text_content':txt_content_seperate_by_dot,'image_urls':img_urls_seperate_by_dot
  404. ,'user_id':user_id,'link':'www.choozmo.com:8168/'+video_sub_folder+name_hash+'.mp4','timestamp':time_stamp})
  405. def get_url_type(url):
  406. req = urllib.request.Request(url, method='HEAD', headers={'User-Agent': 'Mozilla/5.0'})
  407. r = urllib.request.urlopen(req)
  408. contentType = r.getheader('Content-Type')
  409. return contentType
  410. def notify_line_user(msg, line_token):
  411. headers = {
  412. "Authorization": "Bearer " + line_token,
  413. "Content-Type": "application/x-www-form-urlencoded"
  414. }
  415. params = {"message": msg}
  416. r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
  417. def notify_group(msg):
  418. glist=['WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD']
  419. for gid in glist:
  420. headers = {
  421. "Authorization": "Bearer " + gid,
  422. "Content-Type": "application/x-www-form-urlencoded"
  423. }
  424. params = {"message": msg}
  425. r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
  426. def gen_video(name_hash,name,text_content, image_urls,avatar):
  427. c = rpyc.connect("localhost", 8858)
  428. c._config['sync_request_timeout'] = None
  429. remote_svc = c.root
  430. my_answer = remote_svc.call_video(name_hash,name,text_content, image_urls,avatar) # method call
  431. shutil.copy(tmp_video_dir+name_hash+'.mp4',video_dest+name_hash+'.mp4')
  432. os.remove(tmp_video_dir+name_hash+'.mp4')
  433. def gen_video_eng(name_hash,name,text_content, image_urls,sub_titles,avatar):
  434. c = rpyc.connect("localhost", 8858)
  435. c._config['sync_request_timeout'] = None
  436. remote_svc = c.root
  437. my_answer = remote_svc.call_video_eng(name_hash,name,text_content, image_urls,sub_titles,avatar) # method call
  438. shutil.copy(tmp_video_dir+name_hash+'.mp4',video_dest+name_hash+'.mp4')
  439. os.remove(tmp_video_dir+name_hash+'.mp4')
  440. def gen_video_long_queue(name_hash,name,text_content, image_urls,avatar,multiLang,user_id):
  441. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  442. time_stamp = datetime.fromtimestamp(time.time()).strftime("%Y-%m-%d %H:%M:%S")
  443. txt_content_seperate_by_dot = ''
  444. for txt in text_content:
  445. txt_content_seperate_by_dot += txt+","
  446. txt_content_seperate_by_dot = txt_content_seperate_by_dot[:-1]
  447. img_urls_seperate_by_dot = ''
  448. for iurl in image_urls:
  449. img_urls_seperate_by_dot += iurl+","
  450. img_urls_seperate_by_dot = img_urls_seperate_by_dot[:-1]
  451. db['video_queue'].insert({'name_hash':name_hash,'name':name,'text_content':txt_content_seperate_by_dot,'image_urls':img_urls_seperate_by_dot,'multiLang':multiLang,'avatar':avatar,'timestamp':time_stamp})
  452. while True:
  453. if first(db.query('SELECT * FROM video_queue_status'))['status'] == 1:#only one row in this table, which is the id 1 one
  454. print('another process running, leave loop')#1 means already running
  455. break
  456. if first(db.query('SELECT COUNT(1) FROM video_queue'))['COUNT(1)'] == 0:
  457. print('all finish, leave loop')
  458. break
  459. top1 = first(db.query('SELECT * FROM video_queue'))
  460. try:
  461. # if True:
  462. db.query('UPDATE video_queue_status SET status = 1;')
  463. c = rpyc.connect("localhost", 8858)
  464. c._config['sync_request_timeout'] = None
  465. remote_svc = c.root
  466. my_answer = remote_svc.call_video_gen(top1['name_hash'],top1['name'],top1['text_content'].split(','), top1['image_urls'].split(','),top1['multiLang'],top1['avatar']) # method call
  467. shutil.copy(tmp_video_dir+top1['name_hash']+'.mp4',video_dest+top1['name_hash']+'.mp4')
  468. os.remove(tmp_video_dir+top1['name_hash']+'.mp4')
  469. vid_duration = VideoFileClip(video_dest+top1['name_hash']+'.mp4').duration
  470. user_obj = first(db.query('SELECT * FROM users where id ="'+str(user_id)+'"'))
  471. line_token = user_obj['line_token'] # aa
  472. left_time = user_obj['left_time']
  473. email = user_obj['email']
  474. print('left_time is '+str(left_time))
  475. if left_time is None:
  476. left_time = 5*60
  477. if left_time < vid_duration:
  478. msg = '您本月額度剩下'+str(left_time)+'秒,此部影片有'+str(vid_duration)+'秒, 若要繼續產生影片請至 192.168.1.106:8887/confirm_add_value?name_hash='+name_hash+' 加值'
  479. print(msg)
  480. msg =msg.encode(encoding='utf-8')
  481. mailer.send(msg, email)
  482. notify_line_user(msg, line_token)
  483. else:
  484. left_time = left_time - vid_duration
  485. db.query('UPDATE users SET left_time ='+str(left_time)+' WHERE id='+str(user_id)+';')
  486. #notify_group(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  487. notify_line_user(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4", line_token)
  488. except Exception as e:
  489. logging.error(traceback.format_exc())
  490. print('video generation error')
  491. notify_group('影片錯誤')
  492. db['video_queue'].delete(id=top1['id'])
  493. db.query('UPDATE video_queue_status SET status = 0')
  494. def gen_video_queue(name_hash,name,text_content, image_urls,avatar,multiLang,user_id):
  495. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  496. time_stamp = datetime.fromtimestamp(time.time()).strftime("%Y-%m-%d %H:%M:%S")
  497. txt_content_seperate_by_dot = ''
  498. for txt in text_content:
  499. txt_content_seperate_by_dot += txt+","
  500. txt_content_seperate_by_dot = txt_content_seperate_by_dot[:-1]
  501. img_urls_seperate_by_dot = ''
  502. for iurl in image_urls:
  503. img_urls_seperate_by_dot += iurl+","
  504. img_urls_seperate_by_dot = img_urls_seperate_by_dot[:-1]
  505. db['video_queue'].insert({'name_hash':name_hash,'name':name,'text_content':txt_content_seperate_by_dot,'image_urls':img_urls_seperate_by_dot,'multiLang':multiLang,'avatar':avatar,'timestamp':time_stamp})
  506. while True:
  507. if first(db.query('SELECT * FROM video_queue_status'))['status'] == 1:#only one row in this table, which is the id 1 one
  508. print('another process running, leave loop')#1 means already running
  509. break
  510. if first(db.query('SELECT COUNT(1) FROM video_queue'))['COUNT(1)'] == 0:
  511. print('all finish, leave loop')
  512. break
  513. top1 = first(db.query('SELECT * FROM video_queue'))
  514. try:
  515. # if True:
  516. db.query('UPDATE video_queue_status SET status = 1;')
  517. c = rpyc.connect("localhost", 8858)
  518. c._config['sync_request_timeout'] = None
  519. remote_svc = c.root
  520. my_answer = remote_svc.call_video(top1['name_hash'],top1['name'],top1['text_content'].split(','), top1['image_urls'].split(','),top1['multiLang'],top1['avatar']) # method call
  521. shutil.copy(tmp_video_dir+top1['name_hash']+'.mp4',video_dest+top1['name_hash']+'.mp4')
  522. os.remove(tmp_video_dir+top1['name_hash']+'.mp4')
  523. vid_duration = VideoFileClip(video_dest+top1['name_hash']+'.mp4').duration
  524. user_obj = first(db.query('SELECT * FROM users where id ="'+str(user_id)+'"'))
  525. line_token = user_obj['line_token'] # aa
  526. left_time = user_obj['left_time']
  527. email = user_obj['email']
  528. print('left_time is '+str(left_time))
  529. if left_time is None:
  530. left_time = 5*60
  531. if left_time < vid_duration:
  532. msg = '您本月額度剩下'+str(left_time)+'秒,此部影片有'+str(vid_duration)+'秒, 若要繼續產生影片請至 192.168.1.106:8887/confirm_add_value?name_hash='+name_hash+' 加值'
  533. print(msg)
  534. msg =msg.encode(encoding='utf-8')
  535. mailer.send(msg, email)
  536. notify_line_user(msg, line_token)
  537. else:
  538. left_time = left_time - vid_duration
  539. db.query('UPDATE users SET left_time ='+str(left_time)+' WHERE id='+str(user_id)+';')
  540. #notify_group(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4")
  541. notify_line_user(name+"的影片已經產生完成囉! www.choozmo.com:8168/"+video_sub_folder+name_hash+".mp4", line_token)
  542. except Exception as e:
  543. logging.error(traceback.format_exc())
  544. print('video generation error')
  545. notify_group('影片錯誤')
  546. db['video_queue'].delete(id=top1['id'])
  547. db.query('UPDATE video_queue_status SET status = 0')
  548. def gen_video_queue_eng(name_hash,name,text_content, image_urls,sub_titles,avatar):
  549. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  550. time_stamp = datetime.fromtimestamp(time.time()).strftime("%Y-%m-%d %H:%M:%S")
  551. txt_content_seperate_by_dot = ''
  552. for txt in text_content:
  553. txt_content_seperate_by_dot += txt+","
  554. txt_content_seperate_by_dot = txt_content_seperate_by_dot[:-1]
  555. img_urls_seperate_by_dot = ''
  556. for iurl in image_urls:
  557. img_urls_seperate_by_dot += iurl+","
  558. img_urls_seperate_by_dot = img_urls_seperate_by_dot[:-1]
  559. subtitles_seperate_by_dot = ''
  560. for sub in sub_titles:
  561. subtitles_seperate_by_dot += sub+","
  562. subtitles_seperate_by_dot = subtitles_seperate_by_dot[:-1]
  563. db['video_queue'].insert({'name_hash':name_hash,'name':name,'text_content':txt_content_seperate_by_dot,'image_urls':img_urls_seperate_by_dot,'subtitles':subtitles_seperate_by_dot,'avatar':avatar,'timestamp':time_stamp})
  564. while True:
  565. if first(db.query('SELECT * FROM video_queue_status'))['status'] == 1:#only one row in this table, which is the id 1 one
  566. print('another process running, leave loop')
  567. break
  568. if first(db.query('SELECT COUNT(1) FROM video_queue'))['COUNT(1)'] == 0:
  569. print('all finish, leave loop')
  570. break
  571. top1 = first(db.query('SELECT * FROM video_queue'))
  572. try:
  573. db.query('UPDATE video_queue_status SET status = 1;')
  574. c = rpyc.connect("localhost", 8858)
  575. c._config['sync_request_timeout'] = None
  576. remote_svc = c.root
  577. my_answer = remote_svc.call_video_eng(top1['name_hash'],top1['name'],top1['text_content'].split(','), top1['image_urls'].split(','),top1['subtitles'].split(','),top1['avatar']) # method call
  578. shutil.copy(tmp_video_dir+top1['name_hash']+'.mp4',video_dest+top1['name_hash']+'.mp4')
  579. os.remove(tmp_video_dir+top1['name_hash']+'.mp4')
  580. except:
  581. print('video generation error')
  582. notify_group('影片錯誤')
  583. db['video_queue'].delete(id=top1['id'])
  584. db.query('UPDATE video_queue_status SET status = 0')
  585. def gen_avatar(name_hash, imgurl):
  586. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  587. db['avatar_queue'].insert({'name_hash':name_hash,'imgurl':imgurl})
  588. while True:
  589. statement = 'SELECT * FROM avatar_service_status'#only one row in this table, which is the id 1 one
  590. status = -1
  591. for row in db.query(statement):
  592. status = row['status']
  593. if status == 1:
  594. print('leave process loop')
  595. break
  596. statement = 'SELECT * FROM avatar_queue'
  597. works = []
  598. for row in db.query(statement):
  599. works.append({'id':row['id'],'name_hash':row['name_hash'],'imgurl':row['imgurl']})
  600. if len(works)==0:
  601. print('leave process loop')
  602. break
  603. try:
  604. statement = 'UPDATE avatar_service_status SET status = 1 WHERE id=1;'
  605. db.query(statement)
  606. name_hash = works[0]['name_hash']
  607. imgurl = works[0]['imgurl']
  608. c = rpyc.connect("localhost", 8868)
  609. c._config['sync_request_timeout'] = None
  610. remote_svc = c.root
  611. my_answer = remote_svc.call_avatar(name_hash,imgurl) # method call
  612. shutil.copy(tmp_avatar_dir+name_hash+'.mp4',avatar_dest+name_hash+'.mp4')
  613. os.remove(tmp_avatar_dir+name_hash+'.mp4')
  614. except:
  615. print('gen error')
  616. notify_group('無法辨識人臉')
  617. db['avatar_queue'].delete(id=works[0]['id'])
  618. statement = 'UPDATE avatar_service_status SET status = 0 WHERE id=1;' #only one row in this table, which id 1 one
  619. db.query(statement)