main.py 31 KB

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