mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-20 22:52:46 -05:00
Migrate Search to class
This commit is contained in:
parent
b5acc054bf
commit
e6561e10d4
1 changed files with 58 additions and 46 deletions
104
lib/search.js
104
lib/search.js
|
@ -1,49 +1,61 @@
|
||||||
var lunr = require('lunr')
|
"use strict";
|
||||||
|
|
||||||
function Search() {
|
const lunr = require('lunr')
|
||||||
var self = Object.create(Search.prototype)
|
|
||||||
self.index = lunr(function() {
|
class Search {
|
||||||
this.field('name' , { boost: 10 })
|
constructor() {
|
||||||
this.field('description' , { boost: 4 })
|
this.index = lunr(function() {
|
||||||
this.field('author' , { boost: 6 })
|
this.field('name' , { boost: 10 })
|
||||||
this.field('readme')
|
this.field('description' , { boost: 4 })
|
||||||
})
|
this.field('author' , { boost: 6 })
|
||||||
return self
|
this.field('readme')
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
query(q) {
|
||||||
|
return q === '*'
|
||||||
|
? this.storage.config.localList.get().map( function( pkg ) {
|
||||||
|
return { ref: pkg, score: 1 };
|
||||||
|
}) : this.index.search(q);
|
||||||
|
}
|
||||||
|
|
||||||
|
add(pkg) {
|
||||||
|
this.index.add({
|
||||||
|
id: pkg.name,
|
||||||
|
name: pkg.name,
|
||||||
|
description: pkg.description,
|
||||||
|
author: pkg._npmUser ? pkg._npmUser.name : '???',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
add(pkg) {
|
||||||
|
this.index.add({
|
||||||
|
id: pkg.name,
|
||||||
|
name: pkg.name,
|
||||||
|
description: pkg.description,
|
||||||
|
author: pkg._npmUser ? pkg._npmUser.name : '???',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
remove(name) {
|
||||||
|
this.index.remove({ id: name })
|
||||||
|
}
|
||||||
|
|
||||||
|
reindex() {
|
||||||
|
var self = this
|
||||||
|
this.storage.get_local(function(err, packages) {
|
||||||
|
if (err) throw err // that function shouldn't produce any
|
||||||
|
var i = packages.length
|
||||||
|
while (i--) {
|
||||||
|
self.add(packages[i])
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
configureStorage(storage) {
|
||||||
|
this.storage = storage
|
||||||
|
this.reindex()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Search.prototype.query = function(q) {
|
module.exports = new Search();
|
||||||
return q === '*'
|
|
||||||
? this.storage.config.localList.get().map( function( package ){ return { ref: package, score: 1 }; } )
|
|
||||||
: this.index.search(q);
|
|
||||||
}
|
|
||||||
|
|
||||||
Search.prototype.add = function(package) {
|
|
||||||
this.index.add({
|
|
||||||
id: package.name,
|
|
||||||
name: package.name,
|
|
||||||
description: package.description,
|
|
||||||
author: package._npmUser ? package._npmUser.name : '???',
|
|
||||||
})
|
|
||||||
},
|
|
||||||
|
|
||||||
Search.prototype.remove = function(name) {
|
|
||||||
this.index.remove({ id: name })
|
|
||||||
}
|
|
||||||
|
|
||||||
Search.prototype.reindex = function() {
|
|
||||||
var self = this
|
|
||||||
this.storage.get_local(function(err, packages) {
|
|
||||||
if (err) throw err // that function shouldn't produce any
|
|
||||||
var i = packages.length
|
|
||||||
while (i--) {
|
|
||||||
self.add(packages[i])
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
Search.prototype.configureStorage = function(storage) {
|
|
||||||
this.storage = storage
|
|
||||||
this.reindex()
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = Search()
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue