src/litestorepkg/lib/core.nim
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 |
import x_sqlite3, x_db_sqlite as db, strutils, os, oids, json, pegs, strtabs, tables, strutils, base64, math import types, contenttypes, queries, logger, utils # Manage Datastores var LS_TRANSACTION = false proc createIndexes(db: DbConn) = db.exec SQL_CREATE_INDEX_DOCUMENTS_DOCID db.exec SQL_CREATE_INDEX_DOCUMENTS_ID db.exec SQL_CREATE_INDEX_TAGS_TAG_ID db.exec SQL_CREATE_INDEX_TAGS_DOCUMENT_ID proc dropIndexes(db: DbConn) = db.exec SQL_DROP_INDEX_DOCUMENTS_DOCID db.exec SQL_DROP_INDEX_DOCUMENTS_ID db.exec SQL_DROP_INDEX_TAGS_TAG_ID db.exec SQL_DROP_INDEX_TAGS_DOCUMENT_ID proc createDatastore*(file: string) = if file.fileExists(): raise newException(EDatastoreExists, "Datastore '$1' already exists." % file) LOG.debug("Creating datastore '$1'", file) let data = db.open(file, "", "", "") LOG.debug("Creating tables") data.exec(SQL_CREATE_DOCUMENTS_TABLE) data.exec(SQL_CREATE_SEARCHDATA_TABLE) data.exec(SQL_CREATE_SYSTEM_DOCUMENTS_TABLE) data.exec(SQL_CREATE_TAGS_TABLE) data.exec(SQL_CREATE_INFO_TABLE) data.exec(SQL_INSERT_INFO, 2, 0) LOG.debug("Creating indexes") data.createIndexes() LOG.debug("Database created") proc closeDatastore*(store: Datastore) = try: db.close(store.db) except: raise newException(EDatastoreUnavailable, "Datastore '$1' cannot be closed." % store.path) proc destroyDatastore*(store: Datastore) = try: if store.path.fileExists(): store.closeDataStore() store.path.removeFile() except: raise newException(EDatastoreUnavailable, "Datastore '$1' cannot destroyed." % store.path) proc retrieveInfo*(store: Datastore): array[0..1, int] = var data = store.db.getRow(SQL_SELECT_INFO) return [data[0].parseInt, data[1].parseInt] proc upgradeDatastore*(store: Datastore) = let info = store.retrieveInfo() if info[0] == 1: LOG.debug("Upgrading datastore to version 2...") let bkp_path = store.path & "__v1_backup" copyFile(store.path, bkp_path) try: store.db.exec(SQL_CREATE_SYSTEM_DOCUMENTS_TABLE) store.db.exec(SQL_UPDATE_VERSION, 2) LOG.debug("Done.") except: store.closeDatastore() store.path.removeFile() copyFile(bkp_path, store.path) let e = getCurrentException() LOG.error(getCurrentExceptionMsg()) LOG.debug(e.getStackTrace()) LOG.error("Unable to upgrade datastore '$1'." % store.path) proc openDatastore*(file: string): Datastore = if not file.fileExists: raise newException(EDatastoreDoesNotExist, "Datastore '$1' does not exists." % file) try: result.db = db.open(file, "", "", "") # Register custom function & PRAGMAs LOG.debug("Registering custom functions...") discard create_function(cast[PSqlite3](result.db), "rank", -1, SQLITE_ANY, cast[pointer](SQLITE_DETERMINISTIC), okapi_bm25f_kb, nil, nil) LOG.debug("Executing PRAGMAs...") discard result.db.tryExec("PRAGMA journal_mode = WAL".sql) discard result.db.tryExec("PRAGMA page_size = 4096".sql) discard result.db.tryExec("PRAGMA cache_size = 10000".sql) discard result.db.tryExec("PRAGMA foreign_keys = ON".sql) LOG.debug("Done.") result.path = file result.mount = "" except: raise newException(EDatastoreUnavailable, "Datastore '$1' cannot be opened." % file) proc hasMirror(store: Datastore): bool = return store.mount.len > 0 proc begin(store: Datastore) = if not LS_TRANSACTION: LOG.debug("Beginning transaction") LS_TRANSACTION = true store.db.exec("BEGIN".sql) proc commit(store: Datastore) = if LS_TRANSACTION: LOG.debug("Committing transaction") LS_TRANSACTION = false store.db.exec("COMMIT".sql) LOG.debug("Committed.") proc rollback(store: Datastore) = if LS_TRANSACTION: LOG.debug("Rolling back transaction") LS_TRANSACTION = false store.db.exec("ROLLBACK".sql) LOG.debug("Rolled back.") # Manage Indexes proc createIndex*(store: Datastore, indexId, field: string) = let query = sql("CREATE INDEX json_index_$1 ON documents(json_extract(data, ?) COLLATE NOCASE)" % [indexId]) store.begin() store.db.exec(query, field) store.commit() proc dropIndex*(store: Datastore, indexId: string) = let query = sql("DROP INDEX json_index_" & indexId); store.begin() store.db.exec(query) store.commit() proc retrieveIndex*(store: Datastore, id: string, options: QueryOptions = newQueryOptions()): JsonNode = var options = options options.single = true let query = prepareSelectIndexesQuery(options) let raw_index = store.db.getRow(query.sql, "json_index_" & id) if raw_index[0] == "": return newJNull() var matches: array[0..0, string] let fieldPeg = peg"'CREATE INDEX json_index_test ON documents(json_extract(data, \'' {[^']+}" discard raw_index[1].match(fieldPeg, matches) return %[("id", %raw_index[0].replace("json_index_", "")), ("field", %matches[0])] proc retrieveIndexes*(store: Datastore, options: QueryOptions = newQueryOptions()): JsonNode = var query = prepareSelectIndexesQuery(options) var raw_indexes: seq[Row] if (options.like.len > 0): if (options.like[options.like.len-1] == '*' and options.like[0] != '*'): let str = "json_index_" & options.like.substr(0, options.like.len-2) raw_indexes = store.db.getAllRows(query.sql, str, str & "{") else: let str = "json_index_" & options.like.replace("*", "%") raw_indexes = store.db.getAllRows(query.sql, str) else: raw_indexes = store.db.getAllRows(query.sql) var indexes = newSeq[JsonNode](0) for index in raw_indexes: var matches: array[0..0, string] let fieldPeg = peg"'CREATE INDEX json_index_test ON documents(json_extract(data, \'' {[^']+}" discard index[1].match(fieldPeg, matches) indexes.add(%[("id", %index[0].replace("json_index_", "")), ("field", %matches[0])]) return %indexes proc countIndexes*(store: Datastore, q = "", like = ""): int64 = var query = SQL_COUNT_INDEXES if q.len > 0: query = q.sql if like.len > 0: if (like[like.len-1] == '%' or like[like.len-1] == '*'): let str = like.substr(0, like.len-2) return store.db.getRow(query, str, str & "{")[0].parseInt else: return store.db.getRow(query, like)[0].parseInt return store.db.getRow(query)[0].parseInt # Manage Tags proc createTag*(store: Datastore, tagid, documentid: string, system = false) = if tagid.match(PEG_USER_TAG) or system and tagid.match(PEG_TAG): store.begin() store.db.exec(SQL_INSERT_TAG, tagid, documentid) store.commit() else: store.rollback() raise newException(EInvalidTag, "Invalid Tag: $1" % tagid) proc destroyTag*(store: Datastore, tagid, documentid: string, system = false): int64 = if tagid.match(PEG_USER_TAG) or system and tagid.match(PEG_TAG): store.begin() result = store.db.execAffectedRows(SQL_DELETE_TAG, tagid, documentid) store.commit() else: store.rollback() raise newException(EInvalidTag, "Invalid Tag: $1" % tagid) proc retrieveTag*(store: Datastore, id: string, options: QueryOptions = newQueryOptions()): JsonNode = var options = options options.single = true var query = prepareSelectTagsQuery(options) var raw_tag = store.db.getRow(query.sql, id) if raw_tag[0] == "": return newJNull() return %[("id", %raw_tag[0]), ("documents", %(raw_tag[1].parseInt))] proc retrieveTags*(store: Datastore, options: QueryOptions = newQueryOptions()): JsonNode = var query = prepareSelectTagsQuery(options) var raw_tags: seq[Row] if (options.like.len > 0): if (options.like[options.like.len-1] == '*'): let str = options.like.substr(0, options.like.len-2) raw_tags = store.db.getAllRows(query.sql, str, str & "{") else: raw_tags = store.db.getAllRows(query.sql, options.like.replace("*", "%")) else: raw_tags = store.db.getAllRows(query.sql) var tags = newSeq[JsonNode](0) for tag in raw_tags: tags.add(%[("id", %tag[0]), ("documents", %(tag[1].parseInt))]) return %tags proc countTags*(store: Datastore, q = "", like = ""): int64 = var query = SQL_COUNT_TAGS if q.len > 0: query = q.sql if like.len > 0: if (like[like.len-1] == '%' or like[like.len-1] == '*'): let str = like.substr(0, like.len-2) return store.db.getRow(query, str, str & "{")[0].parseInt else: return store.db.getRow(query, like)[0].parseInt return store.db.getRow(query)[0].parseInt proc retrieveTagsWithTotals*(store: Datastore): JsonNode = var data = store.db.getAllRows(SQL_SELECT_TAGS_WITH_TOTALS) var tag_array = newSeq[JsonNode](0) for row in data: var obj = newJObject() obj[row[0]] = %row[1].parseInt tag_array.add(obj) return %tag_array # Manage Documents proc retrieveRawDocument*(store: Datastore, id: string, options: QueryOptions = newQueryOptions()): string = var options = options options.single = true var select = prepareSelectDocumentsQuery(options) var raw_document = store.db.getRow(select.sql, id) if raw_document[0] == "": return "" else: return $store.prepareJsonDocument(raw_document, options) proc createDocument*(store: Datastore, id = "", rawdata = "", contenttype = "text/plain", binary = -1, searchable = 1): string = let singleOp = not LS_TRANSACTION var id = id var contenttype = contenttype.replace(peg"""\;(.+)$""", "") # Strip charset for now var binary = checkIfBinary(binary, contenttype) var searchable = searchable if binary == 1: searchable = 0 var data = rawdata if contenttype == "application/json": # Validate JSON data try: discard data.parseJson except: raise newException(JsonParsingError, "Invalid JSON content - " & getCurrentExceptionMsg()) if id == "": id = $genOid() elif id.isFolder: id = id & $genOid() # Store document try: LOG.debug("Creating document '$1'" % id) store.begin() var res = store.db.insertID(SQL_INSERT_DOCUMENT, id, data, contenttype, binary, searchable, currentTime()) if res > 0: store.db.exec(SQL_INCREMENT_DOCS) if binary <= 0 and searchable >= 0: # Add to search index store.db.exec(SQL_INSERT_SEARCHCONTENT, res, id, data.toPlainText) store.addDocumentSystemTags(id, contenttype) if store.hasMirror and id.startsWith(store.mount): # Add dir tag store.createTag("$dir:"&store.mount, id, true) var filename = id.unixToNativePath if not fileExists(filename): filename.parentDir.createDir filename.writeFile(rawdata) else: raise newException(EFileExists, "File already exists: $1" % filename) if singleOp: store.commit() return $store.retrieveRawDocument(id) except: store.rollback() eWarn() raise proc createSystemDocument*(store: Datastore, id = "", rawdata = "", contenttype = "text/plain", binary = -1): string = let singleOp = not LS_TRANSACTION var id = id var contenttype = contenttype.replace(peg"""\;(.+)$""", "") # Strip charset for now var binary = checkIfBinary(binary, contenttype) var data = rawdata if contenttype == "application/json": # Validate JSON data try: discard data.parseJson except: raise newException(JsonParsingError, "Invalid JSON content - " & getCurrentExceptionMsg()) if id == "": id = $genOid() elif id.isFolder: id = id & $genOid() # Store document try: LOG.debug("Creating system document '$1'" % id) store.begin() discard store.db.insertID(SQL_INSERT_SYSTEM_DOCUMENT, id, data, contenttype, binary, currentTime()) if singleOp: store.commit() return $store.retrieveRawDocument(id) except: store.rollback() eWarn() raise proc updateSystemDocument*(store: Datastore, id: string, rawdata: string, contenttype = "text/plain", binary = -1): string = let singleOp = not LS_TRANSACTION var contenttype = contenttype.replace(peg"""\;(.+)$""", "") # Strip charset for now var binary = checkIfBinary(binary, contenttype) var data = rawdata if contenttype == "application/json": # Validate JSON data try: discard data.parseJson except: raise newException(JsonParsingError, "Invalid JSON content - " & getCurrentExceptionMsg()) try: LOG.debug("Updating system document '$1'" % id) store.begin() var res = store.db.execAffectedRows(SQL_UPDATE_SYSTEM_DOCUMENT, data, contenttype, binary, currentTime(), id) if res > 0: result = $store.retrieveRawDocument(id) else: result = "" if singleOp: store.commit() except: eWarn() store.rollback() raise proc updateDocument*(store: Datastore, id: string, rawdata: string, contenttype = "text/plain", binary = -1, searchable = 1): string = let singleOp = not LS_TRANSACTION var contenttype = contenttype.replace(peg"""\;(.+)$""", "") # Strip charset for now var binary = checkIfBinary(binary, contenttype) var data = rawdata if contenttype == "application/json": # Validate JSON data try: discard data.parseJson except: raise newException(JsonParsingError, "Invalid JSON content - " & getCurrentExceptionMsg()) var searchable = searchable if binary == 1: searchable = 0 try: LOG.debug("Updating document '$1'" % id) store.begin() var res = store.db.execAffectedRows(SQL_UPDATE_DOCUMENT, data, contenttype, binary, searchable, currentTime(), id) if res > 0: if binary <= 0 and searchable >= 0: store.db.exec(SQL_UPDATE_SEARCHCONTENT, data.toPlainText, id) store.destroyDocumentSystemTags(id) store.addDocumentSystemTags(id, contenttype) if store.hasMirror and id.startsWith(store.mount): var filename = id.unixToNativePath if fileExists(filename): filename.writeFile(rawdata) else: raise newException(EFileNotFound, "File not found: $1" % filename) result = $store.retrieveRawDocument(id) else: result = "" if singleOp: store.commit() except: eWarn() store.rollback() raise proc setDocumentModified*(store: Datastore, id: string): string = store.db.exec(SQL_SET_DOCUMENT_MODIFIED, id, currentTime()) proc destroyDocument*(store: Datastore, id: string): int64 = try: let singleOp = not LS_TRANSACTION LOG.debug("Destroying document '$1'" % id) store.begin() result = store.db.execAffectedRows(SQL_DELETE_DOCUMENT, id) if result > 0: store.db.exec(SQL_DECREMENT_DOCS) store.db.exec(SQL_DELETE_SEARCHCONTENT, id) if store.hasMirror and id.startsWith(store.mount): var filename = id.unixToNativePath if fileExists(filename): removeFile(id.unixToNativePath) else: raise newException(EFileNotFound, "File not found: $1" % filename) if singleOp: store.commit() except: eWarn() store.rollback() proc retrieveDocument*(store: Datastore, id: string, options: QueryOptions = newQueryOptions()): tuple[data: string, contenttype: string] = var options = options options.single = true var select = prepareSelectDocumentsQuery(options) var raw_document = store.db.getRow(select.sql, id) LOG.debug("Retrieving document '$1'" % id) if raw_document[0] == "": LOG.debug("(No Data)") return (data: "", contenttype: "") else: LOG.debug("Content Length: $1" % $(raw_document[1].len)) if raw_document[3].parseInt == 1: return (data: raw_document[1].decode, contenttype: raw_document[2]) else: return (data: raw_document[1], contenttype: raw_document[2]) proc retrieveRawDocuments*(store: Datastore, options: var QueryOptions = newQueryOptions()): JsonNode = var select = prepareSelectDocumentsQuery(options) var raw_documents: seq[Row] if options.folder != "": raw_documents = store.db.getAllRows(select.sql, options.folder, options.folder & "{") else: raw_documents = store.db.getAllRows(select.sql) var documents = newSeq[JsonNode](0) for doc in raw_documents: documents.add store.prepareJsonDocument(doc, options) return %documents proc countDocuments*(store: Datastore): int64 = return store.db.getRow(SQL_COUNT_DOCUMENTS)[0].parseInt proc importFile*(store: Datastore, f: string, dir = "/", system = false) = if not f.fileExists: raise newException(EFileNotFound, "File '$1' not found." % f) let ext = f.splitFile.ext var d_id: string if system: # Do not save original directory name d_id = f.replace("\\", "/")[dir.len+1..f.len-1]; else: d_id = f.replace("\\", "/"); var d_contents = f.readFile var d_ct = "application/octet-stream" if CONTENT_TYPES.hasKey(ext): d_ct = CONTENT_TYPES[ext].replace("\"", "") var d_binary = 0 var d_searchable = 1 if d_ct.isBinary: d_binary = 1 d_searchable = 0 d_contents = d_contents.encode(d_contents.len*2) # Encode in Base64. let singleOp = not LS_TRANSACTION store.begin() try: if system: discard store.createSystemDocument(d_id, d_contents, d_ct, d_binary) else: discard store.createDocument(d_id, d_contents, d_ct, d_binary, d_searchable) if dir != "/" and not system: store.db.exec(SQL_INSERT_TAG, "$dir:"&dir, d_id) except: store.rollback() eWarn() raise if singleOp: store.commit() proc optimize*(store: Datastore) = try: store.begin() LOG.debug("Reindexing columns...") store.db.exec(SQL_REINDEX) LOG.debug("Rebuilding full-text index...") store.db.exec(SQL_REBUILD) LOG.debug("Optimixing full-text index...") store.db.exec(SQL_OPTIMIZE) store.commit() LOG.debug("Done") except: eWarn() proc vacuum*(file: string) = let data = db.open(file, "", "", "") try: data.exec(SQL_VACUUM) db.close(data) except: eWarn() quit(203) quit(0) proc importDir*(store: Datastore, dir: string, system = false) = var files = newSeq[string]() if not dir.dirExists: raise newException(EDirectoryNotFound, "Directory '$1' not found." % dir) for f in dir.walkDirRec(): if f.existsDir: continue if f.splitFile.name.startsWith("."): # Ignore hidden files continue files.add(f) # Import single files in batch let batchSize = 100 let nBatches = ceil(files.len/batchSize).toInt var cFiles = 0 var cBatches = 0 store.begin() LOG.info("Importing $1 files in $2 batches", files.len, nBatches) LOG.debug("Dropping column indexes...") store.db.dropIndexes() for f in files: try: store.importFile(f, dir, system) cFiles.inc if (cFiles-1) mod batchSize == 0: cBatches.inc store.commit() LOG.info("Importing batch $1/$2...", cBatches, nBatches) store.begin() except: LOG.warn("Unable to import file: $1", f) eWarn() store.rollback() LOG.debug("Recreating column indexes...") store.db.createIndexes() store.commit() LOG.info("Imported $1/$2 files", cFiles, files.len) proc exportDir*(store: Datastore, dir: string, system = false) = var docs: seq[Row] if system: docs = store.db.getAllRows(SQL_SELECT_SYSTEM_DOCUMENTS) else: docs = store.db.getAllRows(SQL_SELECT_DOCUMENTS_BY_TAG, "$dir:"&dir) LOG.info("Exporting $1 files...", docs.len) for doc in docs: LOG.debug("Exporting: $1", doc[1]) let file = doc[1].unixToNativePath var data: string if doc[4].parseInt == 1: data = doc[2].decode else: data = doc[2] file.parentDir.createDir file.writeFile(data) LOG.info("Done."); proc deleteDir*(store: Datastore, dir: string, system = false) = if system: store.db.exec(SQL_DELETE_SYSTEM_DOCUMENTS) else: store.db.exec(SQL_DELETE_SEARCHDATA_BY_TAG, "$dir:"&dir) store.db.exec(SQL_DELETE_DOCUMENTS_BY_TAG, "$dir:"&dir) store.db.exec(SQL_DELETE_TAGS_BY_TAG, "$dir:"&dir) let total = store.db.getRow(SQL_COUNT_DOCUMENTS)[0].parseInt store.db.exec(SQL_SET_TOTAL_DOCS, total) proc mountDir*(store: var Datastore, dir: string) = if not dir.dirExists: raise newException(EDirectoryNotFound, "Directory '$1' not found." % dir) store.mount = dir proc destroyDocumentsByTag*(store: Datastore, tag: string): int64 = result = 0 var ids = store.db.getAllRows(SQL_SELECT_DOCUMENT_IDS_BY_TAG, tag) for id in ids: result.inc(store.destroyDocument(id[0]).int) proc setLogLevel*(val: string) = case val: of "info": LOG.level = lvInfo of "warn": LOG.level = lvWarn of "debug": LOG.level = lvDebug of "error": LOG.level = lvError of "none": LOG.level = lvNone else: fail(103, "Invalid log level '$1'" % val) proc processAuthConfig(configuration: JsonNode, auth: var JsonNode) = if auth == newJNull() and configuration != newJNull() and configuration.hasKey("signature"): auth = newJObject(); auth["access"] = newJObject(); auth["signature"] = configuration["signature"] for k, v in configuration["resources"].pairs: auth["access"][k] = newJObject() for meth, content in v.pairs: if content.hasKey("auth"): auth["access"][k][meth] = content["auth"] proc processConfigSettings(LS: var LiteStore) = # Process config settings if present and if no cli settings are set if LS.config != newJNull() and LS.config.hasKey("settings"): let settings = LS.config["settings"] let cliSettings = LS.cliSettings if not cliSettings.hasKey("address") and settings.hasKey("address"): LS.address = settings["address"].getStr if not cliSettings.hasKey("port") and settings.hasKey("port"): LS.port = settings["port"].getInt if not cliSettings.hasKey("store") and settings.hasKey("store"): LS.file = settings["store"].getStr if not cliSettings.hasKey("directory") and settings.hasKey("directory"): LS.directory = settings["directory"].getStr if not cliSettings.hasKey("middleware") and settings.hasKey("middleware"): let val = settings["middleware"].getStr for file in val.walkDir(): if file.kind == pcFile or file.kind == pcLinkToFile: LS.middleware[file.path.splitFile[1]] = file.path.readFile() if not cliSettings.hasKey("log") and settings.hasKey("log"): LS.logLevel = settings["log"].getStr setLogLevel(LS.logLevel) if not cliSettings.hasKey("mount") and settings.hasKey("mount"): LS.mount = settings["mount"].getBool if not cliSettings.hasKey("readonly") and settings.hasKey("readonly"): LS.readonly = settings["readonly"].getBool proc setup*(LS: var LiteStore, open = true) = if not LS.file.fileExists: try: LS.file.createDatastore() except: eWarn() fail(200, "Unable to create datastore '$1'" % [LS.file]) if (open): try: LS.store = LS.file.openDatastore() try: LS.store.upgradeDatastore() except: fail(203, "Unable to upgrade datastore '$1'" % [LS.file]) if LS.mount: try: LS.store.mountDir(LS.directory) except: eWarn() fail(202, "Unable to mount directory '$1'" % [LS.directory]) except: fail(201, "Unable to open datastore '$1'" % [LS.file]) proc initStore*(LS: var LiteStore) = if LS.configFile == "": # Attempt to retrieve config.json from system documents let options = newQueryOptions(true) let rawDoc = LS.store.retrieveRawDocument("config.json", options) if rawDoc != "": LS.config = rawDoc.parseJson()["data"] if LS.config != newJNull(): # Process config settings LS.processConfigSettings() # Process auth from config settings processAuthConfig(LS.config, LS.auth) if LS.auth == newJNull(): # Attempt to retrieve auth.json from system documents let options = newQueryOptions(true) let rawDoc = LS.store.retrieveRawDocument("auth.json", options) if rawDoc != "": LS.auth = rawDoc.parseJson()["data"] # Validation if LS.directory == "" and (LS.operation in [opDelete, opImport, opExport] or LS.mount): fail(105, "--directory option not specified.") if LS.execution.file == "" and (LS.execution.operation in ["put", "post", "patch"]): fail(109, "--file option not specified") if LS.execution.uri == "" and LS.operation == opExecute: fail(110, "--uri option not specified") if LS.execution.operation == "" and LS.operation == opExecute: fail(111, "--operation option not specified") proc updateConfig*(LS: LiteStore) = let rawConfig = LS.config.pretty if LS.configFile != "": LS.configFile.writeFile(rawConfig) else: let options = newQueryOptions(true) let configDoc = LS.store.retrieveRawDocument("config.json", options) if configDoc != "": discard LS.store.updateSystemDocument("config.json", rawConfig, "application/json") proc addStore*(LS: LiteStore, id, file: string, config = newJNull()): LiteStore = result = initLiteStore() result.address = LS.address result.port = LS.port result.appname = LS.appname result.appversion = LS.appversion result.favicon = LS.favicon result.file = file if config != newJNull(): result.config = config LOG.info("Initializing store '$1'" % id) result.setup(true) result.initStore() if not LS.config.hasKey("stores"): LS.config["stores"] = newJObject() LS.config["stores"][id] = newJObject() LS.config["stores"][id]["file"] = %file LS.config["stores"][id]["config"] = config |