2018-07-14 12:16:27 +02:00
|
|
|
// @flow
|
|
|
|
|
2018-07-15 19:26:58 +02:00
|
|
|
// this file is not aim to be tested, just to check flow definitions
|
|
|
|
|
2018-07-14 12:16:27 +02:00
|
|
|
import Config from '../../../../src/lib/config';
|
|
|
|
import LoggerApi from '../../../../src/lib/logger';
|
|
|
|
|
|
|
|
import type {
|
|
|
|
Config as AppConfig,
|
2018-07-15 19:26:58 +02:00
|
|
|
IPluginAuth,
|
2018-07-14 12:16:27 +02:00
|
|
|
Logger,
|
|
|
|
PluginOptions
|
|
|
|
} from '@verdaccio/types';
|
|
|
|
|
2018-07-15 19:26:58 +02:00
|
|
|
class ExampleAuthPlugin implements IPluginAuth {
|
2018-07-14 12:16:27 +02:00
|
|
|
config: AppConfig;
|
|
|
|
logger: Logger;
|
|
|
|
|
|
|
|
constructor(config: AppConfig, options: PluginOptions) {
|
|
|
|
this.config = config;
|
|
|
|
this.logger = options.logger;
|
|
|
|
}
|
|
|
|
|
2018-07-16 07:20:11 +02:00
|
|
|
adduser(user: string, password: string, cb: verdaccio$Callback): void {
|
|
|
|
cb();
|
|
|
|
}
|
|
|
|
|
2018-07-14 12:16:27 +02:00
|
|
|
authenticate(user: string, password: string, cb: verdaccio$Callback): void {
|
|
|
|
cb();
|
|
|
|
}
|
|
|
|
|
|
|
|
allow_access(packageName: string, user: string, cb: verdaccio$Callback): void {
|
|
|
|
cb();
|
|
|
|
}
|
|
|
|
|
|
|
|
allow_publish(packageName: string, user: string, cb: verdaccio$Callback): void {
|
|
|
|
cb();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const config1: AppConfig = new Config({
|
|
|
|
storage: './storage',
|
|
|
|
self_path: '/home/sotrage'
|
|
|
|
});
|
|
|
|
|
|
|
|
const options: PluginOptions = {
|
|
|
|
config: config1,
|
|
|
|
logger: LoggerApi.logger.child()
|
|
|
|
}
|
|
|
|
|
2018-07-15 19:26:58 +02:00
|
|
|
const auth = new ExampleAuthPlugin(config1, options);
|
|
|
|
|
|
|
|
auth.authenticate('user', 'pass', () => {});
|
|
|
|
auth.allow_access('packageName', 'user', () => {});
|
|
|
|
auth.allow_publish('packageName', 'user', () => {});
|