-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
2,086 additions
and
1,933 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"hydra-box": minor | ||
--- | ||
|
||
Source changes to TypeScript |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
root = true | ||
|
||
[*] | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
.nyc_output | ||
coverage | ||
node_modules | ||
*.d.ts | ||
*.js | ||
!test/**/*.js | ||
!examples/**/*.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,75 @@ | ||
import rdf from '@zazuko/env-node' | ||
import EcmaScriptLoader from 'rdf-loader-code/ecmaScript.js' | ||
import LoaderRegistry from 'rdf-loaders-registry' | ||
import EcmaScriptModuleLoader from 'rdf-loader-code/ecmaScriptModule.js' | ||
import EcmaScriptLiteralLoader from 'rdf-loader-code/ecmaScriptLiteral.js' | ||
import { replaceDatasetIRI } from './lib/replaceIRI.js' | ||
|
||
/* eslint-disable camelcase */ | ||
import rdf from '@zazuko/env-node'; | ||
import EcmaScriptLoader from 'rdf-loader-code/ecmaScript.js'; | ||
import LoaderRegistryImpl from 'rdf-loaders-registry'; | ||
import EcmaScriptModuleLoader from 'rdf-loader-code/ecmaScriptModule.js'; | ||
import EcmaScriptLiteralLoader from 'rdf-loader-code/ecmaScriptLiteral.js'; | ||
import { replaceDatasetIRI } from './lib/replaceIRI.js'; | ||
class Api { | ||
constructor({ term, dataset, graph, path, codePath } = {}) { | ||
this.term = term | ||
this.dataset = dataset | ||
this.graph = graph | ||
this.path = path | ||
this.codePath = codePath | ||
this.loaderRegistry = new LoaderRegistry() | ||
this.tasks = [] | ||
this.initialized = false | ||
|
||
EcmaScriptLoader.register(this.loaderRegistry) | ||
EcmaScriptModuleLoader.register(this.loaderRegistry) | ||
EcmaScriptLiteralLoader.register(this.loaderRegistry) | ||
} | ||
|
||
async init() { | ||
if (!this._initialization) { | ||
this._initialization = this._beginInit() | ||
initialized; | ||
path; | ||
codePath; | ||
graph; | ||
dataset; | ||
_term; | ||
loaderRegistry; | ||
_initialization; | ||
tasks; | ||
constructor({ term, dataset, graph, path = '/api', codePath = process.cwd() } = {}) { | ||
this._term = term; | ||
this.dataset = dataset || rdf.dataset(); | ||
this.graph = graph; | ||
this.path = path; | ||
this.codePath = codePath; | ||
this.loaderRegistry = new LoaderRegistryImpl(); | ||
this.tasks = []; | ||
this.initialized = false; | ||
EcmaScriptLoader.register(this.loaderRegistry); | ||
EcmaScriptModuleLoader.register(this.loaderRegistry); | ||
EcmaScriptLiteralLoader.register(this.loaderRegistry); | ||
} | ||
|
||
return this._initialization | ||
} | ||
|
||
fromFile(filePath) { | ||
this.tasks.push(async () => { | ||
this.dataset.addAll(await rdf.dataset().import(rdf.fromFile(filePath))) | ||
}) | ||
|
||
return this | ||
} | ||
|
||
rebase(fromBaseIRI, toBaseIRI) { | ||
this.tasks.push(async () => { | ||
this.dataset = replaceDatasetIRI(fromBaseIRI, toBaseIRI, this.dataset) | ||
}) | ||
|
||
return this | ||
} | ||
|
||
static fromFile(filePath, options) { | ||
const api = new Api(options) | ||
|
||
return api.fromFile(filePath) | ||
} | ||
|
||
async _beginInit() { | ||
if (!this.dataset) { | ||
this.dataset = rdf.dataset() | ||
get term() { | ||
return this._term; | ||
} | ||
|
||
for (const task of this.tasks) { | ||
await task() | ||
set term(term) { | ||
this._term = term; | ||
} | ||
|
||
const apiDoc = rdf.clownface({ dataset: this.dataset, term: this.term, graph: this.graph }) | ||
|
||
if (apiDoc.has(rdf.ns.rdf.type, rdf.ns.hydra.ApiDocumentation).terms.length === 0) { | ||
apiDoc.addOut(rdf.ns.rdf.type, rdf.ns.hydra.ApiDocumentation) | ||
|
||
apiDoc.node().has(rdf.ns.rdf.type, rdf.ns.hydra.Class).forEach(supportedClass => { | ||
apiDoc.addOut(rdf.ns.hydra.supportedClass, supportedClass) | ||
}) | ||
async init() { | ||
if (!this._initialization) { | ||
this._initialization = this._beginInit(); | ||
} | ||
return this._initialization; | ||
} | ||
fromFile(filePath) { | ||
this.tasks.push(async () => { | ||
rdf.dataset().addAll.call(this.dataset, await rdf.dataset().import(rdf.fromFile(filePath))); | ||
}); | ||
return this; | ||
} | ||
rebase(fromBaseIRI, toBaseIRI) { | ||
this.tasks.push(async () => { | ||
this.dataset = replaceDatasetIRI(fromBaseIRI, toBaseIRI, this.dataset); | ||
}); | ||
return this; | ||
} | ||
static fromFile(filePath, options) { | ||
const api = new Api(options); | ||
return api.fromFile(filePath); | ||
} | ||
async _beginInit() { | ||
if (!this.dataset) { | ||
this.dataset = rdf.dataset(); | ||
} | ||
for (const task of this.tasks) { | ||
await task(); | ||
} | ||
const apiDoc = rdf.clownface({ dataset: this.dataset, term: this.term, graph: this.graph }); | ||
if (apiDoc.has(rdf.ns.rdf.type, rdf.ns.hydra.ApiDocumentation).terms.length === 0) { | ||
apiDoc.addOut(rdf.ns.rdf.type, rdf.ns.hydra.ApiDocumentation); | ||
apiDoc.any().has(rdf.ns.rdf.type, rdf.ns.hydra.Class).forEach(supportedClass => { | ||
apiDoc.addOut(rdf.ns.hydra.supportedClass, supportedClass); | ||
}); | ||
} | ||
} | ||
} | ||
} | ||
|
||
export default Api | ||
export default Api; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* eslint-disable camelcase */ | ||
import rdf from '@zazuko/env-node' | ||
import EcmaScriptLoader from 'rdf-loader-code/ecmaScript.js' | ||
import LoaderRegistryImpl, { LoaderRegistry } from 'rdf-loaders-registry' | ||
import EcmaScriptModuleLoader from 'rdf-loader-code/ecmaScriptModule.js' | ||
import EcmaScriptLiteralLoader from 'rdf-loader-code/ecmaScriptLiteral.js' | ||
import type { NamedNode, DatasetCore, Quad_Graph } from '@rdfjs/types' | ||
import { replaceDatasetIRI } from './lib/replaceIRI.js' | ||
|
||
interface ApiInit<D extends DatasetCore = DatasetCore> { | ||
term?: NamedNode | ||
dataset?: D | ||
graph?: NamedNode | ||
path?: string | ||
codePath?: string | ||
} | ||
|
||
class Api { | ||
initialized: boolean | ||
path: string | ||
codePath: string | ||
graph?: Quad_Graph | undefined | ||
dataset: DatasetCore | ||
private _term: NamedNode | undefined | ||
loaderRegistry: LoaderRegistry | ||
private _initialization?: Promise<void> | ||
readonly tasks: Array<() => Promise<void>> | ||
|
||
constructor({ term, dataset, graph, path = '/api', codePath = process.cwd() }: ApiInit = { }) { | ||
this._term = term | ||
this.dataset = dataset || rdf.dataset() | ||
this.graph = graph | ||
this.path = path | ||
this.codePath = codePath | ||
this.loaderRegistry = new LoaderRegistryImpl() | ||
this.tasks = [] | ||
this.initialized = false | ||
|
||
EcmaScriptLoader.register(this.loaderRegistry) | ||
EcmaScriptModuleLoader.register(this.loaderRegistry) | ||
EcmaScriptLiteralLoader.register(this.loaderRegistry) | ||
} | ||
|
||
get term() { | ||
return this._term! | ||
} | ||
|
||
set term(term: NamedNode) { | ||
this._term = term | ||
} | ||
|
||
async init() { | ||
if (!this._initialization) { | ||
this._initialization = this._beginInit() | ||
} | ||
|
||
return this._initialization | ||
} | ||
|
||
fromFile(filePath: string) { | ||
this.tasks.push(async () => { | ||
rdf.dataset().addAll.call(this.dataset, await rdf.dataset().import(rdf.fromFile(filePath))) | ||
}) | ||
|
||
return this | ||
} | ||
|
||
rebase(fromBaseIRI: string | NamedNode, toBaseIRI: string | NamedNode) { | ||
this.tasks.push(async () => { | ||
this.dataset = replaceDatasetIRI(fromBaseIRI, toBaseIRI, this.dataset) | ||
}) | ||
|
||
return this | ||
} | ||
|
||
static fromFile(filePath: string, options?: ApiInit) { | ||
const api = new Api(options) | ||
|
||
return api.fromFile(filePath) | ||
} | ||
|
||
async _beginInit() { | ||
if (!this.dataset) { | ||
this.dataset = rdf.dataset() | ||
} | ||
|
||
for (const task of this.tasks) { | ||
await task() | ||
} | ||
|
||
const apiDoc = rdf.clownface({ dataset: this.dataset, term: this.term, graph: this.graph }) | ||
|
||
if (apiDoc.has(rdf.ns.rdf.type, rdf.ns.hydra.ApiDocumentation).terms.length === 0) { | ||
apiDoc.addOut(rdf.ns.rdf.type, rdf.ns.hydra.ApiDocumentation) | ||
|
||
apiDoc.any().has(rdf.ns.rdf.type, rdf.ns.hydra.Class).forEach(supportedClass => { | ||
apiDoc.addOut(rdf.ns.hydra.supportedClass, supportedClass) | ||
}) | ||
} | ||
} | ||
} | ||
|
||
export default Api |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import type { NamedNode, Store } from '@rdfjs/types' | ||
import rdf from '@zazuko/env-node' | ||
import { isNamedNode } from 'is-graph-pointer' | ||
import { PropertyResource, Resource, ResourceLoader } from './index.js' | ||
|
||
export default class StoreResourceLoader implements ResourceLoader { | ||
readonly store: Store | ||
|
||
constructor({ store }: { store: Store }) { | ||
this.store = store | ||
} | ||
|
||
async load(term: NamedNode): Promise<Resource | null> { | ||
const dataset = await rdf.dataset().import(this.store.match(null, null, null, term)) | ||
|
||
if (dataset.size === 0) { | ||
return null | ||
} | ||
|
||
const types = rdf.clownface({ dataset, term }) | ||
.out(rdf.ns.rdf.type) | ||
.filter(isNamedNode) | ||
|
||
return { | ||
term, | ||
prefetchDataset: dataset, | ||
async dataset() { | ||
return dataset | ||
}, | ||
quadStream() { | ||
return dataset.toStream() | ||
}, | ||
types: rdf.termSet(types.terms), | ||
} | ||
} | ||
|
||
async forClassOperation(term: NamedNode) { | ||
const resource = await this.load(term) | ||
|
||
return resource ? [resource] : [] | ||
} | ||
|
||
async forPropertyOperation(term: NamedNode): Promise<PropertyResource[]> { | ||
const dataset = await rdf.dataset().import(this.store.match(null, null, term, null)) | ||
const result: PropertyResource[] = [] | ||
|
||
for (const quad of dataset) { | ||
if (quad.subject.termType !== 'NamedNode') continue | ||
if (quad.object.termType !== 'NamedNode') continue | ||
|
||
const loaded = await this.load(quad.subject) | ||
if (!loaded) continue | ||
|
||
result.push({ | ||
property: quad.predicate, | ||
object: quad.object, | ||
...loaded, | ||
}) | ||
} | ||
|
||
return result | ||
} | ||
} |
Oops, something went wrong.