Use kysely within a zotero plugin.
This is a very thin wrapper around Zotero's query methods that allows you to use kysely as a query generator within Zotero, despite the XPCOM plugin environment not supporting any of the node-dependent SQL drivers.
This allows you to make reasonably maintainable sidecar databases with migrations and type-safe schemas and queries without needing to patch into the zotero database or invent your own data storage system.
The dialect works by creating a secondary database and ATTACH
-ing
it to the zotero database. This allows us to reuse the Zotero sqlite driver
with minimal patching while also providing full control over
a database that can be independent of Zotero's.
All of the queries are then routed through Zotero's Zotero.DB.queryAsync
method.
The ZoteroSqliteDriver
class uses a static connection mutex shared among instances,
so multiple plugins using kysely-zotero-dialect
should be safe to use alongside one
another (in addition to any thread-safety that Zotero provides via queryAsync
).
ya know how to do this part, but for your copy pasting:
npm add kysely-zotero-dialect
# or
yarn add kysely-zotero-dialect
Say we have...
- A plugin:
demo
- A database table:
demo_table
- A sqlite database
{zotero_data_dir}/demo.sqlite
Declare typescript models as you normally would with kysely:
src/schema.ts
import { Generated, Insertable, Selectable, Updateable } from "kysely";
export interface Database {
demo_table: demoTable;
}
export interface demoTable {
id: Generated<number>;
cool_value: string;
}
export type Demo = Selectable<demoTable>;
export type NewDemo = Insertable<demoTable>;
export type DemoUpdate = Updateable<demoTable>;
Assuming you are starting a new project, the easiest way to initialize a database is to use kysely migrations (and you should probably add migrations into your plugin's bootstrap method anyway).
Since someone using our plugin will not have the repository, and most typescript plugins are compiled into a single file (at least currently) we should provide migrations programmatically in the plugin package rather than use migration that depends on the file structure of the migrations.
Important
You should, whenever possible, unless you are absolutely sure that zotero
does not and will never use your table name, refer to your tables with the full
{plugin_name}.{table_name}
syntax.
src/migrations/001_test.ts
import type { Kysely, sql } from "kysely";
export async function up(db: Kysely<any>): Promise<void> {
await db.schema
.createTable("demo.demo_table")
.addColumn("id", "integer", (col) => col.primaryKey())
.addColumn("cool_value", "text")
.execute();
}
export async function down(db: Kysely<any>): Promise<void> {
await db.schema.dropTable("demo.a_table").execute();
}
src/migrations/index.ts
import * as m001 from "./001_test";
// so in the future you can do...
// import * as m002 from "./002_add_doi";
import { Migration, MigrationProvider } from "kysely";
export const migrationProvider: MigrationProvider = {
async getMigrations() {
return migrations;
},
};
export const migrations: Record<string, Migration> = {
"001": m001,
// "002": m002,
};
A database is configured with a ZoteroDialectConfig
like:
export interface ZoteroDialectConfig {
db_name: string;
db_path: string;
}
such that
- a database is created in
{zotero_data_directory}/{db_name}
, like~/Zotero/demo.sqlite
- the database is attached to the zotero database like
'ATTACH DATABASE ? AS ?', [db_name, db_path]
src/db.ts
import { Kysely } from "kysely";
import { ZoteroDialect } from "kysely-zotero-dialect";
import { Database } from "./schema";
import { migrationProvider } from "./migrations/index";
export const initDB = async (): Promise<Kysely<Database>> => {
return new Kysely<Database>({
dialect: new ZoteroDialect({
db_name: "demo",
db_path: "demo_db.sqlite",
})
});
};
export const migrateDB = async (db: Kysely<Database>) => {
const migrator = new Migrator({
db,
provider: migrationProvider,
});
let { error } = await migrator.migrateToLatest();
if (error) throw error;
};
export const createDB = async (): Promise<Kysely<Database>> => {
let db = initDB();
migrateDB(db);
return db
}
You'll probably want to migrate the database to create/update it when installing, and initialize it on startup!
src/bootstrap.ts
import { createDB, initDB } from './db'
export async function install(): Promise<void> {
// ...
createDB();
// ...
}
export async function startup({id, version, resourceURI, rootURI = resourceURI.spec}){
// ...
// actually probably have this in your DemoPlugin.init() method
// and not literally here, but for the sake of illustrating timing...
let Demo = new DemoPlugin();
Demo.db = initDB();
Zotero.Demo = Demo;
// ...
}
Now you're just using kysely normally!
You can use the name of your tables if they are different than
zotero's tables, but usually you should use the fully qualified
{db_name}.{table_name
form.
async function insert(db: Kysely<Database>) {
db
.insertInto("a_table")
.values({cool_value: "hey"})
.returningAll()
.executeTakeFirstOrThrow();
}
async function select(db: Kysely<Database>) {
return await db
.selectFrom("a_table")
.where("cool_value", "=", "hey")
.selectAll()
.execute();
}
Zotero schema models are included in the models
module and can be used like this
import { models } from "kysely-zotero-dialect";
export interface Database extends models.DB {
my_table: SomeOtherTable;
}
which allows you to make type-safe queries directly to the Zotero database tables, however this is not recommended since using the zotero database directly is substantially more complicated and error-prone than using the Zotero API.
These models are not guaranteed to be up to date, though they do include
a MODEL_VERSIONS
const that should allow you to check if they are if you
want to use them or PR an update to them.
This software is in PERPETUAL ALPHA:
We do not guarantee any functionality, nor do we claim to be particularly good at writing javascript. Hell, we don't even know how to test the code because it all runs within Zotero.
PRs are welcome to fix whatever you want, and you are welcome to open any issues as a place of discussion, but unless it's very obvious to us how to fix something, an issue without a PR will likely be left open.
Use the generate-models
script :)
Before you do, you should update Zotero and create a fresh profile:
/location/of/zotero -P
and then pass the location of the created database to the script
yarn run generate-models --db /location/of/zotero.sqlite
or call it with python directly from the repo root
python scripts/generate_models.py --db /location/of/zotero.sqlite