2017-10-06 20:36:46 +02:00
|
|
|
import * as EventEmitter from 'events';
|
|
|
|
import * as bcrypt from 'bcryptjs';
|
|
|
|
|
|
|
|
import User, { IUser } from '../models/user';
|
|
|
|
|
|
|
|
export default class BotCore extends EventEmitter {
|
2017-10-06 21:30:57 +02:00
|
|
|
public user: IUser = null;
|
2017-10-06 20:36:46 +02:00
|
|
|
|
|
|
|
private context: Context = null;
|
|
|
|
|
2017-10-06 21:30:57 +02:00
|
|
|
constructor(user?: IUser) {
|
2017-10-06 20:36:46 +02:00
|
|
|
super();
|
|
|
|
|
|
|
|
this.user = user;
|
|
|
|
}
|
|
|
|
|
2017-10-06 22:50:01 +02:00
|
|
|
private setContect(context: Context) {
|
|
|
|
this.context = context;
|
|
|
|
this.emit('updated');
|
|
|
|
|
|
|
|
if (context) {
|
|
|
|
context.on('updated', () => {
|
|
|
|
this.emit('updated');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public export() {
|
|
|
|
return {
|
|
|
|
user: this.user,
|
|
|
|
context: this.context ? this.context.export() : null
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public static import(data) {
|
|
|
|
const core = new BotCore();
|
2017-10-06 23:03:16 +02:00
|
|
|
core.user = data.user ? data.user : null;
|
2017-10-06 22:50:01 +02:00
|
|
|
core.setContect(data.context ? Context.import(core, data.context) : null);
|
|
|
|
return core;
|
|
|
|
}
|
|
|
|
|
2017-10-06 20:36:46 +02:00
|
|
|
public async q(query: string): Promise<string> {
|
|
|
|
if (this.context != null) {
|
|
|
|
return await this.context.q(query);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (query) {
|
|
|
|
case 'ping':
|
|
|
|
return 'PONG';
|
2017-10-06 22:50:01 +02:00
|
|
|
case 'me':
|
|
|
|
return this.user ? `${this.user.name}としてサインインしています` : 'サインインしていません';
|
2017-10-06 20:36:46 +02:00
|
|
|
case 'ログイン':
|
|
|
|
case 'サインイン':
|
2017-10-06 22:50:01 +02:00
|
|
|
this.setContect(new SigninContext(this));
|
2017-10-06 20:36:46 +02:00
|
|
|
return await this.context.greet();
|
|
|
|
default:
|
|
|
|
return '?';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public setUser(user: IUser) {
|
|
|
|
this.user = user;
|
|
|
|
this.emit('set-user', user);
|
2017-10-06 22:50:01 +02:00
|
|
|
this.emit('updated');
|
2017-10-06 20:36:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-06 22:50:01 +02:00
|
|
|
abstract class Context extends EventEmitter {
|
2017-10-06 20:36:46 +02:00
|
|
|
protected core: BotCore;
|
|
|
|
|
|
|
|
public abstract async greet(): Promise<string>;
|
|
|
|
public abstract async q(query: string): Promise<string>;
|
2017-10-06 22:50:01 +02:00
|
|
|
public abstract export(): any;
|
2017-10-06 20:36:46 +02:00
|
|
|
|
|
|
|
constructor(core: BotCore) {
|
2017-10-06 22:50:01 +02:00
|
|
|
super();
|
2017-10-06 20:36:46 +02:00
|
|
|
this.core = core;
|
|
|
|
}
|
2017-10-06 22:50:01 +02:00
|
|
|
|
|
|
|
public static import(core: BotCore, data: any) {
|
|
|
|
if (data.type == 'signin') return SigninContext.import(core, data.content);
|
|
|
|
return null;
|
|
|
|
}
|
2017-10-06 20:36:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class SigninContext extends Context {
|
2017-10-06 23:03:16 +02:00
|
|
|
private temporaryUser: IUser = null;
|
2017-10-06 20:36:46 +02:00
|
|
|
|
|
|
|
public async greet(): Promise<string> {
|
|
|
|
return 'まずユーザー名を教えてください:';
|
|
|
|
}
|
|
|
|
|
|
|
|
public async q(query: string): Promise<string> {
|
|
|
|
if (this.temporaryUser == null) {
|
|
|
|
// Fetch user
|
|
|
|
const user: IUser = await User.findOne({
|
|
|
|
username_lower: query.toLowerCase()
|
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
data: false,
|
|
|
|
profile: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user === null) {
|
|
|
|
return `${query}というユーザーは存在しませんでした... もう一度教えてください:`;
|
|
|
|
} else {
|
|
|
|
this.temporaryUser = user;
|
2017-10-06 22:50:01 +02:00
|
|
|
this.emit('updated');
|
2017-10-06 20:36:46 +02:00
|
|
|
return `パスワードを教えてください:`;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Compare password
|
|
|
|
const same = bcrypt.compareSync(query, this.temporaryUser.password);
|
|
|
|
|
|
|
|
if (same) {
|
|
|
|
this.core.setUser(this.temporaryUser);
|
|
|
|
return `${this.temporaryUser.name}さん、おかえりなさい!`;
|
|
|
|
} else {
|
|
|
|
return `パスワードが違います... もう一度教えてください:`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-06 22:50:01 +02:00
|
|
|
|
|
|
|
public export() {
|
|
|
|
return {
|
2017-10-06 23:03:16 +02:00
|
|
|
type: 'signin',
|
2017-10-06 22:50:01 +02:00
|
|
|
temporaryUser: this.temporaryUser
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public static import(core: BotCore, data: any) {
|
|
|
|
const context = new SigninContext(core);
|
|
|
|
context.temporaryUser = data.temporaryUser;
|
|
|
|
return context;
|
|
|
|
}
|
2017-10-06 20:36:46 +02:00
|
|
|
}
|