This commit is contained in:
parent
0f2b503f2f
commit
f5fe36825b
|
@ -34,7 +34,7 @@ export default class BotCore extends EventEmitter {
|
||||||
|
|
||||||
public static import(data) {
|
public static import(data) {
|
||||||
const core = new BotCore();
|
const core = new BotCore();
|
||||||
core.user = data.user;
|
core.user = data.user ? data.user : null;
|
||||||
core.setContect(data.context ? Context.import(core, data.context) : null);
|
core.setContect(data.context ? Context.import(core, data.context) : null);
|
||||||
return core;
|
return core;
|
||||||
}
|
}
|
||||||
|
@ -84,7 +84,7 @@ abstract class Context extends EventEmitter {
|
||||||
}
|
}
|
||||||
|
|
||||||
class SigninContext extends Context {
|
class SigninContext extends Context {
|
||||||
private temporaryUser: IUser;
|
private temporaryUser: IUser = null;
|
||||||
|
|
||||||
public async greet(): Promise<string> {
|
public async greet(): Promise<string> {
|
||||||
return 'まずユーザー名を教えてください:';
|
return 'まずユーザー名を教えてください:';
|
||||||
|
@ -124,6 +124,7 @@ class SigninContext extends Context {
|
||||||
|
|
||||||
public export() {
|
public export() {
|
||||||
return {
|
return {
|
||||||
|
type: 'signin',
|
||||||
temporaryUser: this.temporaryUser
|
temporaryUser: this.temporaryUser
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,20 +32,16 @@ module.exports = async (app: express.Application) => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (user) {
|
session = new BotCore(user);
|
||||||
session = new BotCore(user);
|
session.on('set-user', user => {
|
||||||
} else {
|
User.update(user._id, {
|
||||||
session = new BotCore();
|
$set: {
|
||||||
session.on('set-user', user => {
|
line: {
|
||||||
User.update(user._id, {
|
user_id: sourceId
|
||||||
$set: {
|
|
||||||
line: {
|
|
||||||
user_id: sourceId
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
||||||
redis.set(sessionId, JSON.stringify(session.export()));
|
redis.set(sessionId, JSON.stringify(session.export()));
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue