routes.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. from flask import flash, render_template, Blueprint, request, redirect, url_for
  2. from flask.app import Flask
  3. from flask.wrappers import Response
  4. import requests
  5. import os
  6. import fnmatch
  7. import re
  8. import markdown
  9. import uuid
  10. from backstage.blogs.forms import BlogCreateForm
  11. from backstage.utils import get_now_time, translate
  12. from backstage.utils.routes import create_content, remove_content, get_trans_title_url_name
  13. from backstage.config import PORTAL_SERVER, UPLOAD_PATH_MAP, BHOUSE_WEB_DIR
  14. from bs4 import BeautifulSoup
  15. blogs_app = Blueprint('blogs', __name__)
  16. SwfType = {
  17. "other_furniture": "other_furniture",
  18. "sofa":"sofa",
  19. "cabinet":"cabinet",
  20. "desk":"desk",
  21. "dining_chair":"dining_chair",
  22. "dining_table":"dining_table",
  23. "mattress":"mattress",
  24. "side_cabinet":"side_cabinet",
  25. "side_table":"side_table",
  26. "wardrobe":"wardrobe",
  27. }
  28. SfType = {
  29. "custom_made_system_cabinet": "客製模組系統櫃",
  30. "system_cabinet": "模組系統櫃單品",
  31. }
  32. #furniturePath = UPLOAD_PATH_MAP[0][0] + '../設計家具'
  33. furniturePath = BHOUSE_WEB_DIR + '/content/furniture_design_list'
  34. sfurniturePath = UPLOAD_PATH_MAP[0][0] + '../模組系統櫃'
  35. furnitureTypes = []
  36. furnitureTypeFiles = []
  37. furnitureFiles = []
  38. furnitures = []
  39. def refreshFur(itype):
  40. scanpath = ""
  41. furnitureTypes.clear()
  42. furnitureTypeFiles.clear()
  43. furnitureFiles.clear()
  44. furnitures.clear()
  45. if itype == '單品家具':
  46. scanpath = furniturePath
  47. else:
  48. scanpath = sfurniturePath
  49. print(scanpath)
  50. for dirname, dirnames, filenames in os.walk(scanpath):
  51. # print path to all subdirectories first.
  52. for subdirname in dirnames:
  53. if subdirname.find('.') == -1:
  54. furnitureTypes.append(subdirname)
  55. # print path to all filenames.
  56. for filename in filenames:
  57. if filename.find('_index.md') >= 0:
  58. furnitureTypeFiles.append(os.path.join(dirname, filename))
  59. if filename.find('index.md') >= 0:
  60. furnitureFiles.append(os.path.join(dirname, filename))
  61. headerStart = False
  62. for files in furnitureFiles:
  63. tmpfurniture = {}
  64. typeFlag = 0 #if type does not exist flag will not be triggered
  65. with open(files, 'r', encoding="utf-8") as md:
  66. md_line_data = md.readlines()
  67. # print(md_line_data)
  68. for line in md_line_data:
  69. # print(line)
  70. if '---' in line:
  71. headerStart = not headerStart
  72. continue
  73. if headerStart:
  74. if 'title:' in line:
  75. tmpfurniture['title'] = re.split('"|\n', line)[1]
  76. if 'date:' in line:
  77. tmpfurniture['date'] = re.split(':"|\n', line)[0][6:]
  78. if 'draft:' in line:
  79. tmpfurniture['draft'] = re.split(':"|\n', line)[0][7:]
  80. if 'type:' in line:
  81. typeFlag = 1
  82. tmpfurniture['type'] = re.split('"|\n', line)[1]
  83. if 'url:' in line:
  84. tmpfurniture['url'] = re.split('"|\n', line)[1]
  85. if 'image:' in line:
  86. tmpfurniture['image'] = re.split('"|\n', line)[1]
  87. if 'tags:' in line:
  88. tmpfurniture['tags'] = re.split('"|\n', line)[1]
  89. # 避免加入類別項目
  90. if typeFlag == 0:
  91. furnitures.append(tmpfurniture)
  92. elif tmpfurniture['type'] != tmpfurniture['url'][1:]:
  93. furnitures.append(tmpfurniture)
  94. def newFur(irequest):
  95. # print(irequest.url)
  96. myType = {}
  97. myPath = ""
  98. # print(str(irequest.url).find("system_furniture"))
  99. if str(irequest.url).find("system_furniture") >= 0:
  100. myType = SfType
  101. myPath = sfurniturePath
  102. else:
  103. myType = SwfType
  104. myPath = furniturePath
  105. ename = get_trans_title_url_name(irequest.args['newSwfName'])
  106. front_matter = '''---
  107. meta_title: "{}"\n
  108. meta_description: "{}"\n
  109. title: "{}"\n
  110. date: {}\n
  111. draft: true\n
  112. type: "{}"\n
  113. url: "/furniture_design/{}/{}"\n
  114. image: ""\n
  115. ---'''.format(irequest.args['newSwfName'], '', irequest.args['newSwfName'], get_now_time(), irequest.args['newSwfDropdown'], irequest.args['newSwfDropdown'], ename)
  116. newPath = myPath + '/' + myType[irequest.args['newSwfDropdown']] + '/' + ename
  117. if not os.path.exists(newPath):
  118. os.mkdir(newPath)
  119. newPath = newPath
  120. with open(os.path.join(newPath, 'index.md'), 'w', encoding="utf-8") as md:
  121. md.write(front_matter)
  122. # furniturePath
  123. # get_trans_title_url_name()
  124. return furniturePath
  125. @blogs_app.route('/backstage/update', methods=['GET'])
  126. def update():
  127. stream = os.popen('/var/www/bhouse2/New-Bhouse-Web; hugo; rsync -azn -e ssh /var/www/bhouse2/New-Bhouse-Web/public root@172.105.241.163:/var/www/New-Bhouse-Web')
  128. output = stream.read()
  129. print(output)
  130. return redirect(url_for('blogs.blog_list'))
  131. @blogs_app.route('/backstage/blogs', methods=['GET'])
  132. def blog_list():
  133. response = requests.get('{}contents?url=/blog'.format(PORTAL_SERVER))
  134. #print('{}contents?url=/blog'.format(PORTAL_SERVER))
  135. if response.status_code == 200:
  136. sortedData = sorted(response.json(), key=lambda x: x['date'], reverse=True)
  137. return render_template('blogs.html',
  138. title='設計專欄',
  139. legend='設計專欄列表',
  140. blogs=sortedData,
  141. length=len(response.json()),
  142. form=BlogCreateForm())
  143. @blogs_app.route('/backstage/new_solid_wood_furniture', methods=['GET'])
  144. def new_solid_wood_furniture():
  145. # edit_solid_wood_furniture()
  146. return newFur(request)
  147. @blogs_app.route('/backstage/new_system_furniture', methods=['GET'])
  148. def new_system_furniture():
  149. # edit_solid_wood_furniture()
  150. return newFur(request)
  151. @blogs_app.route('/backstage/del_solid_wood_furniture', methods=['GET'])
  152. def del_solid_wood_furniture():
  153. url = request.args.get('url', type=str)
  154. response = requests.delete('{}contents?url={}'.format(PORTAL_SERVER, url))
  155. if response.status_code == 200:
  156. flash('刪除文章成功', 'success')
  157. else:
  158. flash('刪除文章失敗', 'danger')
  159. # edit_solid_wood_furniture()
  160. return url
  161. @blogs_app.route('/backstage/edit_solid_wood_furniture', methods=['GET'])
  162. def edit_solid_wood_furniture():
  163. response = requests.get('{}contents?url=/furniture_design'.format(PORTAL_SERVER))
  164. #print('{}contents?url=/maincategories'.format(PORTAL_SERVER))
  165. if response.status_code == 200:
  166. #sortedData = sorted(response.json(), key=lambda x: x['date'], reverse=True)
  167. return render_template('solid_wood_furniture.html',
  168. title='單品家具',
  169. legend='單品家具',
  170. furnitures=response.json(),
  171. length=len(response.json()))
  172. '''
  173. def edit_solid_wood_furniture():
  174. refreshFur('單品家具')
  175. sortedData = sorted(furnitures, key=lambda x: x['date'], reverse=True)
  176. sortedData = sorted(sortedData, key=lambda x: x['type'])
  177. sortedData = furnitures
  178. return render_template('solid_wood_furniture.html',
  179. title='單品家具',
  180. legend='單品家具',
  181. furnitures=sortedData, length=len(furnitures),
  182. )
  183. '''
  184. @blogs_app.route('/backstage/edit_system_furniture', methods=['GET'])
  185. def edit_system_furniture():
  186. refreshFur('模組系統櫃')
  187. sortedData = sorted(furnitures, key=lambda x: x['date'], reverse=True)
  188. sortedData = sorted(sortedData, key=lambda x: x['type'])
  189. return render_template('system_furniture.html',
  190. title='模組系統櫃',
  191. legend='模組系統櫃',
  192. furnitures=sortedData, length=len(furnitures),
  193. )
  194. @blogs_app.route('/backstage/edit_news', methods=['GET'])
  195. def edit_news():
  196. response = requests.get('{}contents?url=/news'.format(PORTAL_SERVER))
  197. if response.status_code == 200:
  198. #sortedData = sorted(response.json(), key=lambda x: x['date'], reverse=True)
  199. return render_template('news.html',
  200. title='消息與報導',
  201. legend='消息與報導',
  202. news=response.json(), length=len(response.json()), form=BlogCreateForm()
  203. )
  204. @blogs_app.route('/backstage/edit_contact_us', methods=['GET'])
  205. def edit_contact_us():
  206. return render_template('contact_us.html',
  207. title='聯絡我們',
  208. )
  209. @blogs_app.route('/backstage/edit_further', methods=['GET'])
  210. def edit_further():
  211. return render_template('further.html',
  212. title='編輯延伸閱讀',
  213. )
  214. @blogs_app.route('/backstage/edit_faq', methods=['GET'])
  215. def edit_faq():
  216. return render_template('frequently_asked_questions.html',
  217. title='常見問題',
  218. )
  219. @blogs_app.route('/backstage/edit_contact_us_getemail', methods=['GET'])
  220. def edit_contact_us_getemail():
  221. txt = ""
  222. newEmail = request.args.get('newemail', type=str)
  223. footerpath = BHOUSE_WEB_DIR + "/themes/hugo-universal-theme-master/layouts/partials/footer.html"
  224. with open(footerpath, encoding="utf-8") as inf:
  225. txt = inf.read()
  226. result = txt[txt.find('"mailto:')+8:txt.find('"',txt.find('"mailto:')+1)]
  227. #sortedData = sorted(sortedData, key=lambda x: x['type'])
  228. return result
  229. @blogs_app.route('/backstage/edit_contact_us_editemail', methods=['GET'])
  230. def edit_contact_us_editemail():
  231. txt = ""
  232. newEmail = request.args.get('newemail', type=str)
  233. footerpath = BHOUSE_WEB_DIR + "/themes/hugo-universal-theme-master/layouts/partials/footer.html"
  234. with open(footerpath, encoding="utf-8") as inf:
  235. txt = inf.read()
  236. result = re.sub(r'"mailto:(\S*)"', '"mailto:' + newEmail + '"', txt)
  237. with open(footerpath, 'w' , encoding="utf-8") as inf:
  238. inf.write(result)
  239. #sortedData = sorted(sortedData, key=lambda x: x['type'])
  240. return "修改成功" + result
  241. @blogs_app.route('/backstage/blog/create/', methods=['POST'])
  242. def create():
  243. transcat = ""
  244. form = BlogCreateForm()
  245. if form.categories.data == "居家美學":
  246. transcat = "home_aesthetics"
  247. elif form.categories.data == "規劃師QA":
  248. transcat = "room_planner_expertise"
  249. elif form.categories.data == "驗屋知識":
  250. transcat = "home_inspection_knowledge"
  251. else:
  252. transcat = get_trans_title_url_name(form.categories.data)
  253. transtitle = get_trans_title_url_name(form.title.data)
  254. form.image.data.filename = str(uuid.uuid4()).replace('-','') + ".webp"
  255. front_matter = '''---
  256. meta_title: "{}"\n\
  257. meta_description: "{}"\n\
  258. title: "{}"\n\
  259. date: {}\n\
  260. draft: {}\n\
  261. type: "{}"\n\
  262. url: "{}"\n\
  263. image: "/img/title/{}"\n\
  264. categories: "{}"\n\
  265. col1: "{}"\n\
  266. col2: "{}"\n\
  267. introduction: "{}"\n\
  268. question_box_intro: "{}"\n\
  269. ---'''.format(form.title.data, "", form.title.data,
  270. get_now_time(),
  271. 'true',
  272. 'blog',
  273. '/blog/{}'.format(transtitle),
  274. form.image.data.filename,
  275. form.categories.data,
  276. transcat, "", "", "")
  277. data = {'frontMatter': front_matter,
  278. 'name': transtitle,
  279. 'type': 'blog',
  280. 'categories': form.categories.data,
  281. # 'caturl': caturl
  282. }
  283. return create_content(data, form.image.data)
  284. @blogs_app.route('/backstage/edit_blog_getfurther', methods=['GET'])
  285. def edit_blog_getfurther():
  286. txt = ""
  287. datapath = BHOUSE_WEB_DIR + "/themes/hugo-universal-theme-master/layouts/partials/further.html"
  288. data=[]
  289. with open(datapath, encoding="utf-8") as inf:
  290. obj=BeautifulSoup(inf, 'html.parser', from_encoding="utf+8").find_all("a")
  291. for item in obj:
  292. data.append([item.get('href'), item.text])
  293. #sortedData = sorted(sortedData, key=lambda x: x['type'])
  294. return data
  295. @blogs_app.route('/backstage/edit_blog_editfurther', methods=['GET'])
  296. def edit_blog_editfurther():
  297. txt = ""
  298. data=[]
  299. data.append([request.args.get('data00', type=str), request.args.get('data01', type=str)])
  300. data.append([request.args.get('data10', type=str), request.args.get('data11', type=str)])
  301. data.append([request.args.get('data20', type=str), request.args.get('data21', type=str)])
  302. data.append([request.args.get('data30', type=str), request.args.get('data31', type=str)])
  303. data.append([request.args.get('data40', type=str), request.args.get('data41', type=str)])
  304. print(data)
  305. datapath = BHOUSE_WEB_DIR + "/themes/hugo-universal-theme-master/layouts/partials/further.html"
  306. with open(datapath, 'w' , encoding="utf-8") as inf:
  307. for d in data:
  308. if d[1]!='':
  309. inf.write('<li><a href="' + d[0] + '">' + d[1] + '</a></li>\n')
  310. #sortedData = sorted(sortedData, key=lambda x: x['type'])
  311. return "修改成功"
  312. @blogs_app.route('/backstage/blog/createCat/', methods=['GET'])
  313. def createCat():
  314. #title = ""
  315. front_matter = '''---
  316. title: "{}"\n\
  317. date: {}\n\
  318. draft: {}\n\
  319. type: "{}"\n\
  320. categories: "{}"\n\
  321. ---'''.format(request.args["title"],
  322. get_now_time(),
  323. 'false',
  324. 'blog',
  325. get_trans_title_url_name(request.args["title"]))
  326. CatPath = UPLOAD_PATH_MAP[0][0]+"../blog/" + get_trans_title_url_name(request.args["title"])
  327. # print(CatPath)
  328. if not os.path.exists(CatPath):
  329. os.mkdir(CatPath)
  330. with open(os.path.join(CatPath, 'category.md'), 'w', encoding="utf-8") as md:
  331. md.write(front_matter)
  332. print("11")
  333. return Response("你好", 200)
  334. @blogs_app.route('/backstage/news/create/', methods=['POST'])
  335. def createNews():
  336. form = BlogCreateForm()
  337. transtitle = get_trans_title_url_name(form.title.data)
  338. front_matter = '''---
  339. meta_title: "{}"\n
  340. meta_description: "{}"\n
  341. title: "{}"\n\
  342. date: {}\n\
  343. draft: {}\n\
  344. display: {}\n\
  345. type: "{}"\n\
  346. url: "{}"\n\
  347. image: ""\n\
  348. ---'''.format(form.title.data, '', form.title.data,
  349. get_now_time(),
  350. 'true',
  351. 'false',
  352. 'news',
  353. '/news/{}'.format(transtitle))
  354. data = {'frontMatter': front_matter,
  355. 'name': transtitle,
  356. 'type': 'news',
  357. }
  358. return create_content(data, form.image.data)
  359. @blogs_app.route('/backstage/blog/remove', methods=['POST'])
  360. def remove():
  361. remove_content()
  362. return redirect(url_for('blogs.blog_list'))
  363. @blogs_app.route('/backstage/news/remove', methods=['POST'])
  364. def removeNews():
  365. remove_content()
  366. return redirect(url_for('blogs.edit_news'))
  367. @blogs_app.route('/backstage/utils', methods=['GET'])
  368. def transService():
  369. # print(request.args["trantext"])
  370. return get_trans_title_url_name(request.args["trantext"])
  371. """ def GetCategories():
  372. GetCategories
  373. configfiles = [os.path.join(dirpath, f)
  374. for dirpath, dirnames, files in os.walk(UPLOAD_PATH_MAP+'../blog')
  375. for f in fnmatch.filter(files, 'category.md')]
  376. return configfiles """