Browse Source

Исправлен баг "Не качает книги #1", fixed #1

Book Pauk 2 năm trước cách đây
mục cha
commit
42436fabd3
1 tập tin đã thay đổi với 6 bổ sung2 xóa
  1. 6 2
      server/core/InpxParser.js

+ 6 - 2
server/core/InpxParser.js

@@ -72,7 +72,7 @@ class InpxParser {
                 await readFileCallback({fileName: inpFile, current: ++current});
                 const buf = await zipReader.extractToBuf(inpFile);
                 
-                await this.parseInp(buf, structure, parsedCallback);
+                await this.parseInp(buf, structure, inpFile, parsedCallback);
             }
 
             if (this.chunk.length) {
@@ -84,9 +84,10 @@ class InpxParser {
         }
     }
 
-    async parseInp(inpBuf, structure, parsedCallback) {
+    async parseInp(inpBuf, structure, inpFile, parsedCallback) {
         const structLen = structure.length;
         const rows = inpBuf.toString().split('\n');
+        const defaultFolder = `${path.basename(inpFile, '.inp')}.zip`;
 
         for (const row of rows) {
             let line = row;
@@ -115,6 +116,9 @@ class InpxParser {
                 rec.genre = rec.genre.split(':').filter(s => s).join(',');
             }
 
+            if (!rec.folder)
+                rec.folder = defaultFolder;
+
             rec.serno = parseInt(rec.serno, 10) || 0;
             rec.size = parseInt(rec.size, 10) || 0;
             rec.del = parseInt(rec.del, 10) || 0;