routes.py 9.4 KB

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