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