routes.py 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. from backstage.config import UPLOAD_PATH_MAP
  2. import os
  3. import shutil
  4. from flask import render_template, Blueprint, request, redirect, url_for
  5. import flask
  6. from flask_cors import CORS, cross_origin
  7. from flask.helpers import make_response, send_file, send_from_directory
  8. from werkzeug.wrappers import Response
  9. import requests
  10. from PIL import Image
  11. from urllib.parse import urlparse
  12. import uuid
  13. import json
  14. from backstage.config import PORTAL_SERVER
  15. #from backstage.utils.routes import update_manage_table
  16. upload_app = Blueprint('upload', __name__)
  17. @upload_app.route('/backstage/test/<path:iurl>', methods=['GET'])
  18. def upload_test(iurl):
  19. test = iurl[0:iurl.rfind("/")+1]
  20. new_response = requests.get(PORTAL_SERVER + 'contents?url=' + test)
  21. #my_dict = json.loads(new_response.content.decode('utf-8'))[0].items()
  22. for key, value in json.loads(new_response.content.decode('utf-8'))[0].items():
  23. if key == 'path':
  24. print(value.replace('\\', '/'))
  25. # print(my_dict[0].items())
  26. return new_response.content
  27. @upload_app.route('/backstage/upload/<path:iurl>', methods=['POST'])
  28. def upload_post(iurl):
  29. # 取得md路徑
  30. mdPath = ""
  31. new_response = requests.get(PORTAL_SERVER + 'contents?url=' + iurl)
  32. #my_dict = json.loads(new_response.content.decode('utf-8'))[0].items()
  33. obj = json.loads(new_response.content.decode('utf-8'))
  34. if len(obj) > 0:
  35. for key, value in obj[0].items():
  36. if key == 'path':
  37. mdPath = value.replace('\\', '/')
  38. #print(mdPath)
  39. mdPath = mdPath[0:mdPath.rfind('/')+1]
  40. #print(mdPath)
  41. print(mdPath)
  42. isProduct = False
  43. if mdPath.find("設計家具") >= 0 or mdPath.find("模組系統櫃") >= 0:
  44. isProduct = True
  45. #bdata = request.stream.read()
  46. filepath = ""
  47. itype = ""
  48. print(mdPath)
  49. #aa = request.get_data()
  50. if iurl == "title":
  51. itype = iurl
  52. filepath = iurl
  53. else:
  54. itype = iurl[0:iurl.find("/")]
  55. filepath = iurl[iurl.rfind("/")+1:]
  56. if request.method == 'POST':
  57. # check if the post request has the file part
  58. # print(request.full_path)
  59. """ if 'file' not in request.files:
  60. #flash('No file part')
  61. return redirect(request.url) """
  62. if len(request.files) == 0:
  63. aa = {"success": 0}
  64. return aa
  65. else:
  66. file = request.files['image']
  67. # If the user does not select a file, the browser submits an
  68. # empty file without a filename.
  69. """ if file.filename == '':
  70. #flash('No selected file')
  71. return redirect(request.url) """
  72. oimgtype = file.filename[file.filename.rfind(".")+1:]
  73. oimgtypeName = oimgtype
  74. if oimgtype.lower() == 'jpg':
  75. oimgtypeName = 'jpeg'
  76. if file and not isProduct:
  77. #filename = secure_filename(file.filename)
  78. #fname = str(uuid.uuid4()) + file.filename[file.filename.rfind("."):]
  79. #sitepath = UPLOAD_PATH_MAP[0][0] + filepath[filepath.rfind("/")+1:] + "/img/"
  80. if filepath == "title":
  81. sitepath = UPLOAD_PATH_MAP[0][0] + "../../static/img/collection/"
  82. else:
  83. sitepath = UPLOAD_PATH_MAP[0][0] + "../" + itype + "/" + filepath + "/img/"
  84. wfname = str(uuid.uuid4()).replace('-','') + ".webp"
  85. owfname = wfname.replace('webp', oimgtype)
  86. #fullpath = UPLOAD_PATH_MAP[0][0] + filepath[filepath.rfind("/")+1:] + "\\img\\" + fname
  87. #print(UPLOAD_PATH_MAP[0][1] + filepath[filepath.rfind("/")+1:] + "/img/" + fname)
  88. # file.save(fullpath)
  89. #image_object = Image.open(fullpath)
  90. #print(request.args.get('url', type=str))
  91. wpath = os.getcwd() + "/backstage/upload/" + filepath+"/img/"
  92. owpath = os.getcwd() + "/backstage/upload/" + filepath+"/img/orig/"
  93. #fullpath = wpath + fname
  94. if not os.path.exists(wpath):
  95. os.makedirs(wpath)
  96. if not os.path.exists(owpath):
  97. os.makedirs(owpath)
  98. if not os.path.exists(sitepath):
  99. os.makedirs(sitepath)
  100. # file.save(fullpath)
  101. image_object = Image.open(file)
  102. image_object.save(owpath+owfname, oimgtypeName)
  103. if image_object.size[0] > 1000:
  104. image_object.thumbnail(size=((1600, 1600)))
  105. image_object.save(wpath+wfname, 'webp')
  106. image_object.save(sitepath+wfname, 'webp')
  107. #file.save(os.getcwd()+ "/backstage/upload/img/"+ fname)
  108. # return redirect(url_for('download_file', name=file.filename))
  109. aa = {"success": 1, "file": {"url": "/backstage/upload/" +
  110. filepath+"/img/" + wfname, "width": image_object.width, "height": image_object.height}}
  111. # aa = {"success": 1, "file": {"url": UPLOAD_PATH_MAP[0][1] + filepath[filepath.rfind(
  112. # "/")+1:] + "/img/" + fname, "width": image_object.width, "height": image_object.height}}
  113. return aa
  114. elif isProduct:
  115. wpath = os.getcwd() + "/backstage/upload/" + filepath+"/img/"
  116. wfname = str(uuid.uuid4()) + ".webp"
  117. image_object = Image.open(file)
  118. #image_object.save(mdPath+wfname, oimgtypeName)
  119. if image_object.size[0] > 1000:
  120. image_object.thumbnail(size=((1600, 1600)))
  121. if not os.path.exists(wpath):
  122. os.makedirs(wpath)
  123. image_object.save(wpath+wfname, 'webp')
  124. image_object.save(mdPath+wfname, 'webp')
  125. owfname = wfname.replace('webp', oimgtype)
  126. aa = {"success": 1, "file": {"url": "/backstage/upload/" + filepath+"/img/" + wfname,
  127. "width": image_object.width, "height": image_object.height}}
  128. return aa
  129. if request.method == 'GET':
  130. print('GET')
  131. # print(request.files)
  132. # print(request.form)
  133. # print(requests.post("/backstage/upload"))
  134. aa = {"success": 1, "file": {"url": "http://www.choozmo.com/images/logo%20%281%29.webp", }}
  135. return aa
  136. @upload_app.route('/backstage/upload/<path:filepath>', methods=['GET'])
  137. def upload_get(filepath):
  138. # print(filepath)
  139. #print(os.getcwd() + "/backstage/upload/"+filepath, filepath[filepath.rfind("/")+1:])
  140. #aa = {"success" : 1,"file": { "url" : "https://www.tesla.com/tesla_theme/assets/img/_vehicle_redesign/roadster_and_semi/roadster/hero.jpg", } }
  141. # return redirect(url_for('upload.upload_get',filename=filename), code=301)
  142. # return send_from_directory(os.getcwd() + "/backstage/upload/"+filepath, filepath[filepath.rfind("/")+1:])
  143. return send_file(os.getcwd() + "/backstage/upload/"+filepath)
  144. @upload_app.route('/backstage/getimage/<path:iurl>', methods=['POST', 'GET'])
  145. def get_image(iurl):
  146. itype = iurl[0:iurl.find("/")]
  147. filepath = iurl[iurl.rfind("/")+1:]
  148. # print(request.get_json()['url'])
  149. if itype == "blog":
  150. sitepath = UPLOAD_PATH_MAP[0][0] + "../blog/" + filepath + "/img/"
  151. else:
  152. sitepath = UPLOAD_PATH_MAP[0][0] + filepath + "/img/"
  153. #sitepath = UPLOAD_PATH_MAP[0][0] + filepath + "/img/"
  154. oimgtype = str(request.get_json()['url'])[str(request.get_json()['url']).rfind(".")+1:]
  155. oimgtypeName = oimgtype
  156. if oimgtype.lower() == 'jpg':
  157. oimgtypeName = 'jpeg'
  158. # fname = str(uuid.uuid4()) + str(request.get_json()
  159. # ['url'])[str(request.get_json()['url']).rfind("."):]
  160. wfname = str(uuid.uuid4()) + ".webp"
  161. owfname = wfname.replace('webp', oimgtype)
  162. wpath = os.getcwd() + "/backstage/upload/" + filepath+"/img/"
  163. owpath = os.getcwd() + "/backstage/upload/" + filepath+"/img/orig/"
  164. """ fullpath = wpath + fname
  165. if not os.path.exists(wpath):
  166. os.makedirs(wpath)
  167. f = open(fullpath, 'wb')
  168. f.write(requests.get(request.get_json()['url']).content)
  169. f.close() """
  170. if not os.path.exists(wpath):
  171. os.makedirs(wpath)
  172. if not os.path.exists(owpath):
  173. os.makedirs(owpath)
  174. if not os.path.exists(sitepath):
  175. os.makedirs(sitepath)
  176. image_object = Image.open(requests.get(request.get_json()['url'], stream=True).raw)
  177. image_object.save(owpath+owfname, oimgtypeName)
  178. if image_object.size[0] > 1000:
  179. image_object.thumbnail(size=((1600, 1600)))
  180. image_object.save(wpath+wfname, 'webp')
  181. image_object.save(sitepath+wfname, 'webp')
  182. # send_file()
  183. #aa = {"success" : 1,"file": { "url" : "http://localhost:9000/backstage/upload/avatar1.jpg", } }
  184. #resp = make_response(open(os.getcwd()+ "/backstage/upload/" + fname, 'br').read(), 301)
  185. #resp.content_type = "image/jpeg"
  186. #resp.content_encoding = "Unicode"
  187. # return redirect(request.get_json()['url'], code=301)
  188. aa = {"success": 1, "file": {"url": "/backstage/upload/" +
  189. filepath+"/img/" + wfname, "width": image_object.width, "height": image_object.height}}
  190. return aa
  191. @upload_app.route('/backstage/modTitle/<path:filepath>', methods=['GET'])
  192. def modify_title(filepath):
  193. oldPath = UPLOAD_PATH_MAP[0][0] + filepath.split('/')[0]
  194. newPath = UPLOAD_PATH_MAP[0][0] + filepath.split('/')[1]
  195. # os.renames(oldPath,newPath)
  196. """ if os.path.exists(newPath):
  197. return {"success" : 0, "message" : "New directory exists."} """
  198. """ shutil.copytree(oldPath, newPath)
  199. shutil.rmtree(oldPath) """
  200. print(oldPath + ' => ' + newPath)
  201. return {"success": 1}