mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
91c4cf16cc
GitOrigin-RevId: 4cb1d7f6e5636bbed77c4279d7d7704ab9b9ab77
31 lines
697 B
JavaScript
31 lines
697 B
JavaScript
'use strict'
|
|
|
|
const fs = require('fs-extra')
|
|
const xml2js = require('xml2js')
|
|
|
|
const UKAMFEntity = require('./ukamf-entity')
|
|
|
|
class UKAMFDB {
|
|
constructor(file) {
|
|
this.file = file
|
|
}
|
|
|
|
async init() {
|
|
const data = await fs.readFile(this.file, 'utf8')
|
|
const parser = new xml2js.Parser()
|
|
const xml = await parser.parseStringPromise(data)
|
|
|
|
this.entities = xml.EntitiesDescriptor.EntityDescriptor
|
|
}
|
|
|
|
findByEntityID(matcher) {
|
|
const entity = this.entities.find(
|
|
matcher instanceof RegExp
|
|
? e => e.$.entityID.match(matcher)
|
|
: e => e.$.entityID.includes(matcher)
|
|
)
|
|
return entity ? new UKAMFEntity(entity) : null
|
|
}
|
|
}
|
|
|
|
module.exports = UKAMFDB
|