main.py 30 KB

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