Only connect to Meili with valid config

This commit is contained in:
PrivateGER 2023-05-29 17:06:39 +02:00
parent 69852b8a05
commit e52b1330d3
1 changed files with 39 additions and 37 deletions

View File

@ -9,19 +9,20 @@ import { Followings, Users } from "@/models/index.js";
const logger = dbLogger.createSubLogger("meilisearch", "gray", false);
logger.info("Connecting to MeiliSearch");
const hasConfig =
config.meilisearch &&
(config.meilisearch.host ||
config.meilisearch.port ||
config.meilisearch.apiKey);
if (hasConfig) {
const host = hasConfig ? config.meilisearch.host ?? "localhost" : "";
const port = hasConfig ? config.meilisearch.port ?? 7700 : 0;
const auth = hasConfig ? config.meilisearch.apiKey ?? "" : "";
const ssl = hasConfig ? config.meilisearch.ssl ?? false : false;
logger.info("Connecting to MeiliSearch");
const client: MeiliSearch = new MeiliSearch({
host: `${ssl ? "https" : "http"}://${host}:${port}`,
apiKey: auth,
@ -58,6 +59,7 @@ posts
);
logger.info("Connected to MeiliSearch");
}
export type MeilisearchNote = {
id: string;