backend-manager 3.2.162 → 3.2.164

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backend-manager",
3
- "version": "3.2.162",
3
+ "version": "3.2.164",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
@@ -51,6 +51,7 @@
51
51
  "glob": "^10.4.1",
52
52
  "hcaptcha": "^0.1.1",
53
53
  "inquirer": "^8.2.5",
54
+ "itwcw-package-analytics": "^1.0.0",
54
55
  "json5": "^2.2.3",
55
56
  "jwt-decode": "^3.1.2",
56
57
  "lodash": "^4.17.21",
@@ -76,4 +77,4 @@
76
77
  "wonderful-log": "^1.0.5",
77
78
  "yargs": "^17.7.2"
78
79
  }
79
- }
80
+ }
@@ -3,6 +3,7 @@ const moment = require('moment');
3
3
  const jetpack = require('fs-jetpack');
4
4
  const powertools = require('node-powertools');
5
5
  const uuidv4 = require('uuid').v4;
6
+ const { get, set } = require('lodash');
6
7
  const path = require('path');
7
8
  const { Octokit } = require('@octokit/rest');
8
9
 
@@ -101,7 +102,10 @@ Module.prototype.main = function () {
101
102
  await self.extractImages();
102
103
 
103
104
  // Set defaults
104
- const formattedContent = powertools.template(POST_TEMPLATE, payload.data.payload);
105
+ const formattedContent = powertools.template(
106
+ POST_TEMPLATE,
107
+ formatClone(payload.data.payload),
108
+ );
105
109
 
106
110
  // Insert ads
107
111
  const articleWithAds = insertAds(formattedContent, 6, 4000);
@@ -333,6 +337,20 @@ Module.prototype.uploadPost = function (content) {
333
337
  });
334
338
  };
335
339
 
340
+ function formatClone(payload) {
341
+ powertools.getKeys(payload).forEach((item) => {
342
+ const value = get(payload, item);
343
+ const isArray = Array.isArray(value);
344
+
345
+ // If it's an array, format as JSON so it appears in frontmatter as an array
346
+ if (isArray) {
347
+ set(payload, item, JSON.stringify(value));
348
+ }
349
+ });
350
+
351
+ return payload;
352
+ }
353
+
336
354
  function hyphenate(s) {
337
355
  return s
338
356
  // Remove everything that is not a letter or a number
@@ -277,6 +277,7 @@ Module.prototype.requestGhostii = function (settings, content) {
277
277
  insertLinks: true,
278
278
  headerImageUrl: 'unsplash',
279
279
  url: settings.app.url,
280
+ sectionQuantity: powertools.random(3, 6, {mode: 'gaussian'}),
280
281
  feedUrl: `${settings.app.url}/feeds/posts.json`,
281
282
  links: settings.links,
282
283
  },
@@ -177,14 +177,14 @@ Manager.prototype.init = function (exporter, options) {
177
177
  }
178
178
 
179
179
  if (!appId) {
180
- console.warn('⚠️ Missing config.app.id');
180
+ self.assistant.warn('⚠️ Missing config.app.id');
181
181
  }
182
182
 
183
183
  // Setup sentry
184
184
  if (self.options.sentry) {
185
185
  const sentryRelease = `${appId || self.project.projectId}@${self.package.version}`;
186
186
  const sentryDSN = self.config?.sentry?.dsn || '';
187
- // console.log('Sentry', sentryRelease, sentryDSN);
187
+ // self.assistant.log('Sentry', sentryRelease, sentryDSN);
188
188
 
189
189
  self.libraries.sentry = require('@sentry/node');
190
190
  self.libraries.sentry.init({
@@ -937,7 +937,7 @@ Manager.prototype.setupCustomServer = function (_library, options) {
937
937
 
938
938
  // Install process
939
939
  routes.forEach((file) => {
940
- // console.log('---file', file);
940
+ // self.assistant.log('---file', file);
941
941
  // Require the file
942
942
  const cors = self.libraries.cors;
943
943
 
@@ -184,13 +184,15 @@ OpenAI.prototype.request = function (options) {
184
184
  // console.log('*** input!!!', input.content.slice(0, 50), input.path);
185
185
  // console.log('*** input.content', input.content.slice(0, 50));
186
186
  // console.log('*** input.path', input.path);
187
- // _log('Loading', input);
188
187
 
189
188
  let text = '';
190
189
 
191
190
  // Load text
192
191
  if (input.path) {
193
192
  const exists = jetpack.exists(input.path);
193
+
194
+ _log('Reading prompt from path:', input.path);
195
+
194
196
  if (!exists) {
195
197
  return new Error(`Path ${input.path} not found`);
196
198
  } else if (exists === 'dir') {