1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/lib/local-data.js

47 lines
814 B
JavaScript
Raw Normal View History

2017-04-17 16:10:21 +02:00
"use strict";
const fs = require('fs');
const Path = require('path');
class LocalData {
constructor(path) {
this.path = path
try {
this.data = JSON.parse(fs.readFileSync(this.path, 'utf8'))
} catch(_) {
this.data = { list: [] }
}
}
2017-04-17 16:10:21 +02:00
add(name) {
if (this.data.list.indexOf(name) === -1) {
this.data.list.push(name)
this.sync()
}
}
2017-04-17 16:10:21 +02:00
remove(name) {
const i = this.data.list.indexOf(name)
if (i !== -1) {
this.data.list.splice(i, 1)
}
this.sync()
}
2017-04-17 16:10:21 +02:00
get() {
return this.data.list
}
2017-04-17 16:10:21 +02:00
sync() {
// Uses sync to prevent ugly race condition
try {
require('mkdirp').sync(Path.dirname(this.path))
} catch(err) {}
fs.writeFileSync(this.path, JSON.stringify(this.data))
}
}
2017-04-17 16:10:21 +02:00
module.exports = LocalData;