routes.py 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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 = mdPath + "/img/"
  84. #sitepath = UPLOAD_PATH_MAP[0][0] + "../" + itype + "/" + filepath + "/img/"
  85. wfname = str(uuid.uuid4()).replace('-','') + ".webp"
  86. owfname = wfname.replace('webp', oimgtype)
  87. #fullpath = UPLOAD_PATH_MAP[0][0] + filepath[filepath.rfind("/")+1:] + "\\img\\" + fname
  88. #print(UPLOAD_PATH_MAP[0][1] + filepath[filepath.rfind("/")+1:] + "/img/" + fname)
  89. # file.save(fullpath)
  90. #image_object = Image.open(fullpath)
  91. #print(request.args.get('url', type=str))
  92. wpath = os.getcwd() + "/backstage/upload/" + filepath+"/img/"
  93. owpath = os.getcwd() + "/backstage/upload/" + filepath+"/img/orig/"
  94. #fullpath = wpath + fname
  95. if not os.path.exists(wpath):
  96. os.makedirs(wpath)
  97. if not os.path.exists(owpath):
  98. os.makedirs(owpath)
  99. if not os.path.exists(sitepath):
  100. os.makedirs(sitepath)
  101. # file.save(fullpath)
  102. image_object = Image.open(file)
  103. image_object.save(owpath+owfname, oimgtypeName)
  104. if image_object.size[0] > 1000:
  105. image_object.thumbnail(size=((1600, 1600)))
  106. image_object.save(wpath+wfname, 'webp')
  107. image_object.save(sitepath+wfname, 'webp')
  108. #file.save(os.getcwd()+ "/backstage/upload/img/"+ fname)
  109. # return redirect(url_for('download_file', name=file.filename))
  110. aa = {"success": 1, "file": {"url": "/backstage/upload/" +
  111. filepath+"/img/" + wfname, "width": image_object.width, "height": image_object.height}}
  112. # aa = {"success": 1, "file": {"url": UPLOAD_PATH_MAP[0][1] + filepath[filepath.rfind(
  113. # "/")+1:] + "/img/" + fname, "width": image_object.width, "height": image_object.height}}
  114. return aa
  115. elif isProduct:
  116. wpath = os.getcwd() + "/backstage/upload/" + filepath+"/img/"
  117. wfname = str(uuid.uuid4()) + ".webp"
  118. image_object = Image.open(file)
  119. #image_object.save(mdPath+wfname, oimgtypeName)
  120. if image_object.size[0] > 1000:
  121. image_object.thumbnail(size=((1600, 1600)))
  122. if not os.path.exists(wpath):
  123. os.makedirs(wpath)
  124. image_object.save(wpath+wfname, 'webp')
  125. image_object.save(mdPath+wfname, 'webp')
  126. owfname = wfname.replace('webp', oimgtype)
  127. aa = {"success": 1, "file": {"url": "/backstage/upload/" + filepath+"/img/" + wfname,
  128. "width": image_object.width, "height": image_object.height}}
  129. return aa
  130. if request.method == 'GET':
  131. print('GET')
  132. # print(request.files)
  133. # print(request.form)
  134. # print(requests.post("/backstage/upload"))
  135. aa = {"success": 1, "file": {"url": "http://www.choozmo.com/images/logo%20%281%29.webp", }}
  136. return aa
  137. @upload_app.route('/backstage/upload/<path:filepath>', methods=['GET'])
  138. def upload_get(filepath):
  139. # print(filepath)
  140. #print(os.getcwd() + "/backstage/upload/"+filepath, filepath[filepath.rfind("/")+1:])
  141. #aa = {"success" : 1,"file": { "url" : "https://www.tesla.com/tesla_theme/assets/img/_vehicle_redesign/roadster_and_semi/roadster/hero.jpg", } }
  142. # return redirect(url_for('upload.upload_get',filename=filename), code=301)
  143. # return send_from_directory(os.getcwd() + "/backstage/upload/"+filepath, filepath[filepath.rfind("/")+1:])
  144. return send_file(os.getcwd() + "/backstage/upload/"+filepath)
  145. @upload_app.route('/backstage/getimage/<path:iurl>', methods=['POST', 'GET'])
  146. def get_image(iurl):
  147. itype = iurl[0:iurl.find("/")]
  148. filepath = iurl[iurl.rfind("/")+1:]
  149. # print(request.get_json()['url'])
  150. if itype == "blog":
  151. sitepath = UPLOAD_PATH_MAP[0][0] + "../blog/" + filepath + "/img/"
  152. else:
  153. sitepath = UPLOAD_PATH_MAP[0][0] + filepath + "/img/"
  154. #sitepath = UPLOAD_PATH_MAP[0][0] + filepath + "/img/"
  155. oimgtype = str(request.get_json()['url'])[str(request.get_json()['url']).rfind(".")+1:]
  156. oimgtypeName = oimgtype
  157. if oimgtype.lower() == 'jpg':
  158. oimgtypeName = 'jpeg'
  159. # fname = str(uuid.uuid4()) + str(request.get_json()
  160. # ['url'])[str(request.get_json()['url']).rfind("."):]
  161. wfname = str(uuid.uuid4()) + ".webp"
  162. owfname = wfname.replace('webp', oimgtype)
  163. wpath = os.getcwd() + "/backstage/upload/" + filepath+"/img/"
  164. owpath = os.getcwd() + "/backstage/upload/" + filepath+"/img/orig/"
  165. """ fullpath = wpath + fname
  166. if not os.path.exists(wpath):
  167. os.makedirs(wpath)
  168. f = open(fullpath, 'wb')
  169. f.write(requests.get(request.get_json()['url']).content)
  170. f.close() """
  171. if not os.path.exists(wpath):
  172. os.makedirs(wpath)
  173. if not os.path.exists(owpath):
  174. os.makedirs(owpath)
  175. if not os.path.exists(sitepath):
  176. os.makedirs(sitepath)
  177. image_object = Image.open(requests.get(request.get_json()['url'], stream=True).raw)
  178. image_object.save(owpath+owfname, oimgtypeName)
  179. if image_object.size[0] > 1000:
  180. image_object.thumbnail(size=((1600, 1600)))
  181. image_object.save(wpath+wfname, 'webp')
  182. image_object.save(sitepath+wfname, 'webp')
  183. # send_file()
  184. #aa = {"success" : 1,"file": { "url" : "http://localhost:9000/backstage/upload/avatar1.jpg", } }
  185. #resp = make_response(open(os.getcwd()+ "/backstage/upload/" + fname, 'br').read(), 301)
  186. #resp.content_type = "image/jpeg"
  187. #resp.content_encoding = "Unicode"
  188. # return redirect(request.get_json()['url'], code=301)
  189. aa = {"success": 1, "file": {"url": "/backstage/upload/" +
  190. filepath+"/img/" + wfname, "width": image_object.width, "height": image_object.height}}
  191. return aa
  192. @upload_app.route('/backstage/modTitle/<path:filepath>', methods=['GET'])
  193. def modify_title(filepath):
  194. oldPath = UPLOAD_PATH_MAP[0][0] + filepath.split('/')[0]
  195. newPath = UPLOAD_PATH_MAP[0][0] + filepath.split('/')[1]
  196. # os.renames(oldPath,newPath)
  197. """ if os.path.exists(newPath):
  198. return {"success" : 0, "message" : "New directory exists."} """
  199. """ shutil.copytree(oldPath, newPath)
  200. shutil.rmtree(oldPath) """
  201. print(oldPath + ' => ' + newPath)
  202. return {"success": 1}