@waline/vercel 1.32.0 → 1.32.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -22,7 +22,8 @@ module.exports = function (configParams = {}) {
22
22
 
23
23
  return function (req, res) {
24
24
  for (const k in config) {
25
- think.config(k, config[k]);
25
+ // fix https://github.com/walinejs/waline/issues/2649 with alias model config name
26
+ think.config(k === 'model' ? 'customModel' : k, config[k]);
26
27
  }
27
28
 
28
29
  return think
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@waline/vercel",
3
- "version": "1.32.0",
3
+ "version": "1.32.1",
4
4
  "description": "vercel server for waline comment system",
5
5
  "keywords": [
6
6
  "waline",
@@ -15,7 +15,7 @@
15
15
  "license": "MIT",
16
16
  "author": "lizheming <i@imnerd.org>",
17
17
  "dependencies": {
18
- "@cloudbase/node-sdk": "^2.11.0",
18
+ "@cloudbase/node-sdk": "^3.2.0",
19
19
  "@koa/cors": "^5.0.0",
20
20
  "@mdit/plugin-katex": "0.8.0",
21
21
  "@mdit/plugin-mathjax": "0.4.8",
@@ -23,20 +23,20 @@
23
23
  "@mdit/plugin-sup": "0.8.0",
24
24
  "akismet": "^2.0.7",
25
25
  "deta": "^2.0.0",
26
- "dompurify": "^3.1.4",
26
+ "dompurify": "^3.1.6",
27
27
  "dy-node-ip2region": "^1.0.1",
28
28
  "fast-csv": "^5.0.1",
29
29
  "form-data": "^4.0.0",
30
- "jsdom": "^24.1.0",
30
+ "jsdom": "^24.1.1",
31
31
  "jsonwebtoken": "^9.0.2",
32
- "katex": "^0.16.10",
32
+ "katex": "^0.16.11",
33
33
  "koa-compose": "^4.1.0",
34
34
  "leancloud-storage": "^4.15.2",
35
35
  "markdown-it": "^14.1.0",
36
36
  "markdown-it-emoji": "^3.0.0",
37
37
  "mathjax-full": "^3.2.2",
38
38
  "node-fetch": "^2.7.0",
39
- "nodemailer": "^6.9.13",
39
+ "nodemailer": "^6.9.14",
40
40
  "nunjucks": "^3.2.4",
41
41
  "phpass": "^0.1.1",
42
42
  "prismjs": "^1.29.0",
@@ -51,7 +51,7 @@
51
51
  "think-mongo": "^2.2.1",
52
52
  "think-router-rest": "^1.0.5",
53
53
  "thinkjs": "^3.2.15",
54
- "ua-parser-js": "^1.0.37"
54
+ "ua-parser-js": "^1.0.38"
55
55
  },
56
56
  "engines": {
57
57
  "node": ">=16"
@@ -32,27 +32,21 @@ module.exports = class extends BaseRest {
32
32
  const model = this.getModel(table);
33
33
 
34
34
  if (storage === 'leancloud' || storage === 'mysql') {
35
- item.insertedAt && (item.insertedAt = new Date(item.insertedAt));
36
- item.createdAt && (item.createdAt = new Date(item.createdAt));
37
- item.updatedAt && (item.updatedAt = new Date(item.updatedAt));
35
+ if (item.insertedAt) item.insertedAt = new Date(item.insertedAt);
36
+ if (item.createdAt) item.createdAt = new Date(item.createdAt);
37
+ if (item.updatedAt) item.updatedAt = new Date(item.updatedAt);
38
38
  }
39
39
 
40
40
  if (storage === 'mysql') {
41
- item.insertedAt &&
42
- (item.insertedAt = think.datetime(
41
+ if (item.insertedAt)
42
+ item.insertedAt = think.datetime(
43
43
  item.insertedAt,
44
44
  'YYYY-MM-DD HH:mm:ss',
45
- ));
46
- item.createdAt &&
47
- (item.createdAt = think.datetime(
48
- item.createdAt,
49
- 'YYYY-MM-DD HH:mm:ss',
50
- ));
51
- item.updatedAt &&
52
- (item.updatedAt = think.datetime(
53
- item.updatedAt,
54
- 'YYYY-MM-DD HH:mm:ss',
55
- ));
45
+ );
46
+ if (item.createdAt)
47
+ item.createdAt = think.datetime(item.createdAt, 'YYYY-MM-DD HH:mm:ss');
48
+ if (item.updatedAt)
49
+ item.updatedAt = think.datetime(item.updatedAt, 'YYYY-MM-DD HH:mm:ss');
56
50
  }
57
51
 
58
52
  delete item.objectId;
@@ -38,10 +38,10 @@ module.exports = {
38
38
  return nunjucks.renderString(message, variables);
39
39
  },
40
40
  getModel(modelName) {
41
- const { storage, model } = this.config();
41
+ const { storage, customModel } = this.config();
42
42
 
43
- if (typeof model === 'function') {
44
- const modelInstance = model(modelName, this);
43
+ if (typeof customModel === 'function') {
44
+ const modelInstance = customModel(modelName, this);
45
45
 
46
46
  if (modelInstance) {
47
47
  return modelInstance;
@@ -346,13 +346,13 @@ module.exports = class extends think.Service {
346
346
 
347
347
  const form = new FormData();
348
348
 
349
- topic && form.append('topic', topic);
350
- template && form.append('template', template);
351
- channel && form.append('channel', channel);
352
- webhook && form.append('webhook', webhook);
353
- callbackUrl && form.append('callbackUrl', callbackUrl);
354
- title && form.append('title', title);
355
- content && form.append('content', content);
349
+ if (topic) form.append('topic', topic);
350
+ if (template) form.append('template', template);
351
+ if (channel) form.append('channel', channel);
352
+ if (webhook) form.append('webhook', webhook);
353
+ if (callbackUrl) form.append('callbackUrl', callbackUrl);
354
+ if (title) form.append('title', title);
355
+ if (content) form.append('content', content);
356
356
 
357
357
  return fetch(`http://www.pushplus.plus/send/${PUSH_PLUS_KEY}`, {
358
358
  method: 'POST',
@@ -1,5 +1,4 @@
1
1
  /* eslint-disable @typescript-eslint/no-unused-vars */
2
- /* eslint-disable no-unused-vars */
3
2
 
4
3
  module.exports = class extends think.Service {
5
4
  constructor(tableName) {
@@ -172,7 +172,7 @@ module.exports = class extends Base {
172
172
  */
173
173
  const item = await this.instance.get(conditions.key);
174
174
 
175
- item && data.push(item);
175
+ if (item) data.push(item);
176
176
  } else if (offset) {
177
177
  /**
178
178
  * deta base need last data key when pagination
package/vanilla.js CHANGED
@@ -15,7 +15,7 @@ let config = {};
15
15
 
16
16
  try {
17
17
  config = require('./config.js');
18
- } catch (e) {
18
+ } catch {
19
19
  // do nothing
20
20
  }
21
21
  for (const k in config) {