harsimranb / database

Gurbani database containing an evolving set of corrections.

Home Page:https://shabados.github.io/database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shabad OS Database


The most accurate, open, digital representation of Sikh Bani and other Panthic texts, their translations, transliterations, discourse, pronunciation, and more with an evolving, reproducible, and publicly logged set of corrections.

CircleCI Github All Releases npm (scoped) David license
Email WhatsApp Slack
Full Docs

Table of Contents

Getting Started

Install the database with npm install @shabados/database. An objection.js object is returned, allowing for flexible and relational querying. To fetch a Shabad with first letters:

// const { Lines } = require('./index') // If using this repo
const { Lines } = require('@shabados/database') // If using npm module
    
// Fetch the line, with information about the shabad
Lines
  .query() // Start a query on the lines table
  .firstLetters('ਹਹਹਗ')   // Search for the first letters, ordering the results sensibly
  .first()  // Use the first line that is returned
  .then(line => line.$relatedQuery('shabad').eager('[lines, writer]'))  // Return the shabad the line is from, with the lines and writer
  .then(shabad => console.log(shabad))

To search in the ascii equivalent, the API will automatically convert the search to unicode:

Lines.query().firstLetters('kkggAnj')

Although column names are in snake_case, the API returns camelCase via objection.js.

Schema & File Structure

schema

The schema can be modified in the migrations/schema.js file.

JSON files for Raags, Sources, Writers, and Line_Types can be found in the data folder. Changing a value here will be reflected everywhere else. The (array index) + 1 represents the id used for each relation in other tables.

Lines of JSON files are split by page or other sensible method via ./data/source/number.json.

Bani compilations can be added to the bani.json. To define the lines it contains, each bani should contain a list of objects with start_line and end_line, referring to the files in sources.

Build

It is possible to make small changes and build a database from the JSON files and in reverse to make batch changes and build the JSON files from the database.

Database

You can build an SQLite3 database with the following methods:

Node.js - Install node. Install dependencies and build with npm install && npm run build-sqlite.

Docker - Install docker. Build with docker-compose up build-sqlite. Check the build folder.

JSON

Instead of making bulk changes to JSON files as a pull request, we highly urge you to submit an issue of the change first instead for visibility and security.

It is best practice to build the database, make changes to database.sqlite, and regenerate JSON files with the following methods:

Node.js - npm run build-json

Docker - docker-compose up build-json

Contributing

By making a pull request of changes to the data folder, others can submit spelling mistakes, grammar errors, and translation improvements. Format for errors should follow the guideline for git commits:

Subject: What for/in Line XXXX

Description:
From where did you source the information (Include title, year, and other pertinent information for 3rd parties).
(Optional) Why was the information incorrect in our db (e.g. mistake inherited from 2014 iGurbani db or mistake found in 2008 Sttm2 db).

Folder structure

The data folder is the source of truth for any builds.

  • Source folders - .json files contain the id, gurmukhi, pronunciation, and translations of each line of parent folder's source
  • .json files - these files range from compiling banis, separating sections and sub-sections, to naming languages, translations, and writers

Releases

The builds for any of branches can be found on CircleCI.

If #Major, #Minor, #Patch are found in the latest commit messages, database assets will be compiled and released per semantic versioning.

Compiled databases are available via the release page, or via npm install @shabados/database.

Benchmarks

Run benchmarks with npm run benchmark or docker-compose up benchmark. Benchmarks depend on specs, but the following shows that between 0-200 results can be returned in a reasonable amount of time.

Query Results Time
ਹਹ 2748 ~80ms
ਹਹਹ 226 ~50ms
ਹਹਹਹ 50 ~50ms
ਹਹਹਹਹ 13 ~50ms

Viewers

You can use an application like DBeaver to view the SQLite file.

Licenses

Gurbani was written during a time and place without formal copyright laws. Therefore we identify it as being free of known restrictions under copyright law. Gurbani under the data folder and generated under the build folder, including the gurmukhi JSON and SQLite fields, is licensed under a PDM Creative Commons Public Domain Mark 1.0 License.

Supporting text under the data folder and generated under the build folder, are subject to their respective source copyrights, some by other authors. Translations, transliterations, notes, compilations, or other items which are not Gurbani and which are created or uniquely organized by the Shabad OS team are subject to the CC By-SA Creative Commons Attribution-ShareAlike 4.0 International License.

Code and content resting outside of the data and build folders is licensed under the GNU General Public License V3.

All code and content resting outside of the data and build folders is licensed under the GNU General Public License V3.

About

Gurbani database containing an evolving set of corrections.

https://shabados.github.io/database

License:Creative Commons Attribution Share Alike 4.0 International


Languages

Language:JavaScript 98.4%Language:Shell 1.3%Language:Dockerfile 0.3%