Ver Fonte

210728 detection of title folder duplication
url translation

yukyo há 3 anos atrás
pai
commit
d7fee53831

+ 1 - 1
backstage/collections/routes.py

@@ -50,7 +50,7 @@ description: "{}"\n\
               get_now_time(),
               'false',
               'collection',
-              '/collection/{}'.format(form.title.data),
+              '/collection/{}'.format(get_trans_title_url_name(form.title.data)),
               form.image.data.filename,
               form.description.data)
     data = {'frontMatter': front_matter,

+ 22 - 22
backstage/static/js/editor.js

@@ -64,12 +64,12 @@ axios.get(contentApiUrl).then(({ data }) => {
     }
     else if (blocks[i]['type'] == "youtube") {
       ampimg = blocks[i]['text'];
-      vid = ampimg.substr(ampimg.indexOf("data-videoid=\"") +14, ampimg.indexOf("\"", ampimg.indexOf("data-videoid=\"") + 14) - ampimg.indexOf("data-videoid=\"") - 14)
+      vid = ampimg.substr(ampimg.indexOf("data-videoid=\"") + 14, ampimg.indexOf("\"", ampimg.indexOf("data-videoid=\"") + 14) - ampimg.indexOf("data-videoid=\"") - 14)
       editorBlocks.push({
         type: "embed", data: {
           service: 'youtube',
-          source: 'https://www.youtube.com/watch?'+ vid,
-          embed: 'https://www.youtube.com/embed/'+ vid,
+          source: 'https://www.youtube.com/watch?' + vid,
+          embed: 'https://www.youtube.com/embed/' + vid,
           width: parseInt(ampimg.substr(ampimg.indexOf("width=\"") + 7, ampimg.indexOf("\"", ampimg.indexOf("width=\"") + 7) - ampimg.indexOf("width=\"") - 7)),
           height: parseInt(ampimg.substr(ampimg.indexOf("height=\"") + 8, ampimg.indexOf("\"", ampimg.indexOf("height=\"") + 8) - ampimg.indexOf("height=\"") - 8)),
         }
@@ -92,7 +92,7 @@ axios.get(contentApiUrl).then(({ data }) => {
     }
     else if (blocks[i]['type'] == "table") {
       //alert('yo');
-      editorBlocks.push({ type: "table", data: { content: tableTextToArray(blocks[i]['text'])} });
+      editorBlocks.push({ type: "table", data: { content: tableTextToArray(blocks[i]['text']) } });
     }
     //li.appendChild(odiv);
     //ul.appendChild(li);
@@ -118,9 +118,9 @@ axios.get(contentApiUrl).then(({ data }) => {
         class: ImageTool,
         config: {
           endpoints: {
-/*             byFile: '/backstage/upload' + JSON.parse(document.getElementById('url').textContent).url, // Your backend file uploader endpoint
-            byUrl: '/backstage/getimage' + JSON.parse(document.getElementById('url').textContent).url, // Your endpoint that provides uploading by Url
-*/            
+            /*             byFile: '/backstage/upload' + JSON.parse(document.getElementById('url').textContent).url, // Your backend file uploader endpoint
+                        byUrl: '/backstage/getimage' + JSON.parse(document.getElementById('url').textContent).url, // Your endpoint that provides uploading by Url
+            */
             byFile: '/backstage/upload/' + $('#ctitle').val(), // Your backend file uploader endpoint
             byUrl: '/backstage/getimage/' + $('#ctitle').val(), // Your endpoint that provides uploading by Url
           }
@@ -160,7 +160,7 @@ axios.get(contentApiUrl).then(({ data }) => {
 
 submitButton.onclick = function () {
 
-  editor.save().then((outputData) => {  
+  editor.save().then((outputData) => {
     //console.log('Article data: ', outputData);
 
     var mdContent = '';
@@ -177,7 +177,7 @@ submitButton.onclick = function () {
     mdContent += 'url: "' + $('#curl').val() + '"\n';
     mdContent += 'image: "' + $('#cimage').val() + '"\n';
     mdContent += 'description: "' + $('#cdescription').val() + '"\n';
-    mdContent += 'weight: ' + ($('#cweight').val() == 'undefined' ? "" : $('#cweight').val())+ '\n';
+    mdContent += 'weight: ' + ($('#cweight').val() == 'undefined' ? "" : $('#cweight').val()) + '\n';
     mdContent += 'tag: "' + ($('#ctag').val() == 'undefined' ? "" : $('#ctag').val()) + '"\n';
     mdContent += '---\n\n';
 
@@ -208,15 +208,15 @@ submitButton.onclick = function () {
       }
       else if (block.type == "embed") {
         mdContent += '\n<amp-youtube'
-        + '\n  data-videoid="' + block.data.embed.replace('https://www.youtube.com/embed/','')
-        + '"\n  layout="responsive'
-        + '"\n  width="' + block.data.width
-        + '"\n  height="' + block.data.height 
-        + '">\n</amp-youtube>\n';
+          + '\n  data-videoid="' + block.data.embed.replace('https://www.youtube.com/embed/', '')
+          + '"\n  layout="responsive'
+          + '"\n  width="' + block.data.width
+          + '"\n  height="' + block.data.height
+          + '">\n</amp-youtube>\n';
       }
       else if (block.type == "table") {
         //alert(tableArrayToHtml(block.data).length);
-        mdContent += '\n'+ tableArrayToHtml(block.data.content) +'\n'
+        mdContent += '\n' + tableArrayToHtml(block.data.content) + '\n'
         //console.log(tableArrayToHtml(block.data.content));
       }
     }
@@ -226,17 +226,17 @@ submitButton.onclick = function () {
       content: mdContent,
       url: (JSON.parse(document.getElementById('url').textContent)).url
     };
-    axios.post(contentApiUrl, json = postData);
-
-    alert('作品資料已儲存');
+    axios.post(contentApiUrl, json = postData).then(({ data }) => {
+      alert('作品資料已儲存');
+    });
   }).catch((error) => {
     console.log('Saving failed: ', error)
   });
 
-/*   var mdContent = '';
-  for (var frontMatter of frontMatters) {
-    mdContent += frontMatter + '\n';
-  } */
+  /*   var mdContent = '';
+    for (var frontMatter of frontMatters) {
+      mdContent += frontMatter + '\n';
+    } */
 
   //alert(bb);
   /*     for(var eBlock in outputData.blocks)

+ 9 - 0
backstage/static/js/yo.js

@@ -190,6 +190,15 @@ class MDParser {
     constructor(MDtext) {
         this.headerText = "";
         this.contentText = "";
+        this.title = "";
+        this.date = new Date();
+        this.draft = true;
+        this.type = "";
+        this.url = "";
+        this.image = "";
+        this.description = "";
+        this.weight = 1;
+        this.tag = [];
         for (var line of MDtext.split('\n')) {
             //console.log(line);
         }

+ 4 - 2
backstage/templates/tables/editor_table.html

@@ -82,7 +82,7 @@
       </div>
 
       <div class="modal-footer">
-        <button type="button" class="btn btn-danger" onclick="updateHeader();location.reload();">完成修改</button>
+        <button type="button" class="btn btn-danger" onclick="updateHeader();">完成修改</button>
       </div>
 
     </div>
@@ -165,7 +165,9 @@
         //alert(data.file.url.substring(data.file.url.lastIndexOf('/')+1));
       }
       if (oTitle != $('#ctitle').val() && $('#ctitle').val() != "" && oTitle != "") {
-        axios.get('/backstage/modTitle/' + oTitle + '/' + $('#ctitle').val())
+        axios.get('/backstage/modTitle/' + oTitle + '/' + $('#ctitle').val()).then(({data}) => {
+          console.log(data)
+        });
       }
       postData = {
         content: mdContent,

+ 4 - 3
backstage/upload/routes.py

@@ -154,9 +154,10 @@ def modify_title(filepath):
     oldPath = UPLOAD_PATH_MAP[0][0] + filepath.split('/')[0]
     newPath = UPLOAD_PATH_MAP[0][0] + filepath.split('/')[1]
     # os.renames(oldPath,newPath)
+    if os.path.exists(newPath):
+        return {"success" : 0, "message" : "New directory exists."}
     shutil.copytree(oldPath, newPath)
     shutil.rmtree(oldPath)
-    print(oldPath)
-    print(newPath)
+    print(oldPath + ' => ' + newPath)
 
-    return {}
+    return {"success": 1}

+ 7 - 3
backstage/utils/routes.py

@@ -1,4 +1,4 @@
-from flask import flash, request, redirect, url_for
+from flask import flash, request, redirect, url_for, Response
 import requests
 from time import sleep
 from backstage.utils import translate
@@ -12,13 +12,16 @@ TYPE_URL_FOR = {'collection': 'collections.collection_list',
 
 def create_content(data, image_data):
     new_response = requests.post('{}new_content'.format(PORTAL_SERVER), json=data)
+    if new_response.status_code == 201:
+        flash('新增文章失敗', 'danger')
+        return "<script>alert('已有重複的標題,請重新設定');history.go(-1);</script>"
     if new_response.status_code == 200:
         requests.post(
             '{}upload/static/img?type={}&filename={}'.format(
-                PORTAL_SERVER, data.get('type'), image_data.filename), files={'image': image_data})
+                PORTAL_SERVER, data.get('type'), get_trans_title_url_name(image_data.filename)), files={'image': image_data})
         sleep(1)  # sleep for waiting for new_content API generating content successfully.
         return redirect(url_for('editor.editor', url='/{}/{}'.format(
-            data.get('type'), data.get('name'))))
+            data.get('type'), get_trans_title_url_name(data.get('name')))))
     else:
         flash('新增文章失敗', 'danger')
         return redirect(url_for(TYPE_URL_FOR.get(data.get('type'))))
@@ -35,6 +38,7 @@ def remove_content():
 
 def get_trans_title_url_name(title):
     return translate(title).replace(' ', '_')
+    #return translate(title).replace(' ', '_')
 
 
 def update_manage_table(data, elements, req_args, files, img_type):