|
@@ -11,6 +11,7 @@ from backstage.blogs.forms import BlogCreateForm
|
|
|
from backstage.utils import get_now_time, translate
|
|
|
from backstage.utils.routes import create_content, remove_content, get_trans_title_url_name
|
|
|
from backstage.config import PORTAL_SERVER, UPLOAD_PATH_MAP, BHOUSE_WEB_DIR
|
|
|
+from bs4 import BeautifulSoup
|
|
|
|
|
|
blogs_app = Blueprint('blogs', __name__)
|
|
|
|
|
@@ -133,6 +134,12 @@ image: ""\n
|
|
|
# get_trans_title_url_name()
|
|
|
return furniturePath
|
|
|
|
|
|
+@blogs_app.route('/backstage/update', methods=['GET'])
|
|
|
+def update():
|
|
|
+ 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')
|
|
|
+ output = stream.read()
|
|
|
+ print(output)
|
|
|
+ return redirect(url_for('blogs.blog_list'))
|
|
|
|
|
|
@blogs_app.route('/backstage/blogs', methods=['GET'])
|
|
|
def blog_list():
|
|
@@ -224,12 +231,16 @@ def edit_news():
|
|
|
|
|
|
@blogs_app.route('/backstage/edit_contact_us', methods=['GET'])
|
|
|
def edit_contact_us():
|
|
|
- response = requests.get('{}contents?url=/contact'.format(PORTAL_SERVER))
|
|
|
- if response.status_code == 200:
|
|
|
return render_template('contact_us.html',
|
|
|
title='聯絡我們',
|
|
|
)
|
|
|
|
|
|
+@blogs_app.route('/backstage/edit_further', methods=['GET'])
|
|
|
+def edit_further():
|
|
|
+ return render_template('further.html',
|
|
|
+ title='編輯延伸閱讀',
|
|
|
+ )
|
|
|
+
|
|
|
@blogs_app.route('/backstage/edit_faq', methods=['GET'])
|
|
|
def edit_faq():
|
|
|
return render_template('frequently_asked_questions.html',
|
|
@@ -312,6 +323,40 @@ question_box_intro: "{}"\n\
|
|
|
|
|
|
return create_content(data, form.image.data)
|
|
|
|
|
|
+@blogs_app.route('/backstage/edit_blog_getfurther', methods=['GET'])
|
|
|
+def edit_blog_getfurther():
|
|
|
+ txt = ""
|
|
|
+ datapath = BHOUSE_WEB_DIR + "/themes/hugo-universal-theme-master/layouts/partials/further.html"
|
|
|
+ data=[]
|
|
|
+ with open(datapath, encoding="utf-8") as inf:
|
|
|
+ obj=BeautifulSoup(inf, 'html.parser', from_encoding="utf+8").find_all("a")
|
|
|
+ for item in obj:
|
|
|
+ data.append([item.get('href'), item.text])
|
|
|
+
|
|
|
+ #sortedData = sorted(sortedData, key=lambda x: x['type'])
|
|
|
+ return data
|
|
|
+
|
|
|
+@blogs_app.route('/backstage/edit_blog_editfurther', methods=['GET'])
|
|
|
+def edit_blog_editfurther():
|
|
|
+ txt = ""
|
|
|
+ data=[]
|
|
|
+ data.append([request.args.get('data00', type=str), request.args.get('data01', type=str)])
|
|
|
+ data.append([request.args.get('data10', type=str), request.args.get('data11', type=str)])
|
|
|
+ data.append([request.args.get('data20', type=str), request.args.get('data21', type=str)])
|
|
|
+ data.append([request.args.get('data30', type=str), request.args.get('data31', type=str)])
|
|
|
+ data.append([request.args.get('data40', type=str), request.args.get('data41', type=str)])
|
|
|
+
|
|
|
+ print(data)
|
|
|
+
|
|
|
+ datapath = BHOUSE_WEB_DIR + "/themes/hugo-universal-theme-master/layouts/partials/further.html"
|
|
|
+
|
|
|
+ with open(datapath, 'w' , encoding="utf-8") as inf:
|
|
|
+ for d in data:
|
|
|
+ if d[1]!='':
|
|
|
+ inf.write('<li><a href="' + d[0] + '">' + d[1] + '</a></li>\n')
|
|
|
+
|
|
|
+ #sortedData = sorted(sortedData, key=lambda x: x['type'])
|
|
|
+ return "修改成功"
|
|
|
|
|
|
@blogs_app.route('/backstage/blog/createCat/', methods=['GET'])
|
|
|
def createCat():
|