Skip to content

Commit 091cbb9

Browse files
authored
algolia patch (#351)
* Fixed error due to variable not being in scope (probably) "ReferenceError: algoliaIndex is not defined" Not sure why it worked before... * bump algoliasearch dependency * Improved handling when Algolia index isn't found
1 parent c227683 commit 091cbb9

File tree

3 files changed

+123
-89
lines changed

3 files changed

+123
-89
lines changed

_deploy/package-lock.json

+103-84
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_deploy/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"author": "Sebastian Wikström",
1010
"license": "ISC",
1111
"dependencies": {
12-
"algoliasearch": "^4.13.1",
12+
"algoliasearch": "^4.23.2",
1313
"cli-color": "^2.0.3",
1414
"columnify": "^1.6.0",
1515
"commander": "^9.5.0",

_deploy/zendesk.mjs

+19-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if (ZENDESK_USER && ZENDESK_PASS) {
1212
console.log('Zendesk credentials not found.');
1313
zendeskApiLimit = 200;
1414
}
15-
console.log(`API requests per minute: ${zendeskApiLimit}\n`);
15+
console.log(`API requests per minute: ${zendeskApiLimit}`);
1616

1717
const AlgoliaID = process.env.ALGOLIA_APPLICATION_ID;
1818
const AlgoliaSecret = process.env.ALGOLIA_INDEXER_KEY;
@@ -49,7 +49,7 @@ const htmlSave = program.opts().htmlSave;
4949
const htmlDiff = program.opts().htmlDiff; // TODO
5050
const wait = program.opts().wait;
5151
const syncIndex = program.opts().syncIndex;
52-
const skipAlgolia = program.opts().skipAlgolia;
52+
var skipAlgolia = program.opts().skipAlgolia;
5353

5454
// Set up Zendesk client
5555
import { createClient as createZendeskClient } from 'node-zendesk';
@@ -67,11 +67,24 @@ const client = createZendeskClient({
6767

6868
// Algolia
6969
import algoliasearch from 'algoliasearch';
70+
let algoliaIndex;
7071
if (!skipAlgolia) {
71-
const algoliaIndex = algoliasearch(AlgoliaID, AlgoliaSecret)
72+
algoliaIndex = algoliasearch(AlgoliaID, AlgoliaSecret)
7273
.initIndex(AlgoliaIndexName);
74+
try {
75+
var algoliaExists = await algoliaIndex.exists();
76+
if (algoliaExists) {
77+
console.log('Algolia index exists.');
78+
}
79+
} catch (error) {
80+
console.log('Algolia index does not exist, and will not be updated!');
81+
skipAlgolia = true;
82+
}
7383
}
7484

85+
// Empty line
86+
console.log();
87+
7588
// HTML
7689
import * as htmlparser2 from "htmlparser2";
7790
import { render } from 'dom-serializer';
@@ -619,7 +632,9 @@ async function deploy(zendeskSections, articles) {
619632
}).wait();
620633
} catch (error) {
621634
console.error("Couldn't save object in Algolia");
622-
console.error(error);
635+
if (verbose) {
636+
console.error(error);
637+
}
623638
}
624639
}
625640
}));

0 commit comments

Comments
 (0)