0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

fix: add legacy getMatchedPackagesSpec to config (#5173)

* fix: add legacy getMatchedPackagesSpec to config

Some old plugins depends of this function

* Update storage.ts

* Update src/lib/config.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Juan Picado 2025-03-29 18:10:18 +01:00 committed by GitHub
parent cbd69af5d0
commit abea8ce095
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 8 deletions

View file

@ -64,12 +64,6 @@ const defineAPI = async function (config: IConfig, storage: Storage): Promise<ex
hookDebug(app, config.configPath);
}
// register middleware plugins
const plugin_params = {
config: config,
logger: logger,
};
const plugins: pluginUtils.ExpressMiddleware<IConfig, {}, Auth>[] = await asyncLoadPlugin(
config.middlewares,
{
@ -79,6 +73,7 @@ const defineAPI = async function (config: IConfig, storage: Storage): Promise<ex
function (plugin) {
return typeof plugin.register_middlewares !== 'undefined';
},
true,
config?.serverSettings?.pluginPrefix ?? 'verdaccio',
PLUGIN_CATEGORY.MIDDLEWARE
);
@ -116,6 +111,7 @@ const defineAPI = async function (config: IConfig, storage: Storage): Promise<ex
export default (async function (configHash: any) {
setup(configHash.logs);
const config: IConfig = new AppConfig(_.cloneDeep(configHash));
const storage = new Storage(config);
// waits until init calls have been initialized
await storage.init(config, []);

View file

@ -1,11 +1,13 @@
import _ from 'lodash';
import { Config as ConfigCore } from '@verdaccio/config';
import { getMatchedPackagesSpec } from '@verdaccio/utils';
class Config extends ConfigCore {
public constructor(config: any) {
config.configPath = config.self_path;
super(config, { forceMigrateToSecureLegacySignature: false });
// Temporary solution for plugins that depends on legacy configuration files
// @ts-ignore
this.getMatchedPackagesSpec = getMatchedPackagesSpec;
}
}

View file

@ -81,6 +81,7 @@ class Storage {
(plugin: pluginUtils.ManifestFilter<Config>) => {
return typeof plugin.filter_metadata !== 'undefined';
},
true,
this.config?.serverSettings?.pluginPrefix,
PLUGIN_CATEGORY.FILTER
);