oak-general-business/lib/features/token.js

306 lines
12 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Token = void 0;
var tslib_1 = require("tslib");
var Feature_1 = require("oak-frontend-base/lib/types/Feature");
var Exception_1 = require("oak-domain/lib/types/Exception");
var env_1 = require("../utils/env");
var projection_1 = require("../types/projection");
var Exception_2 = require("../types/Exception");
var Token = /** @class */ (function (_super) {
tslib_1.__extends(Token, _super);
function Token(cache, storage) {
var _this = _super.call(this) || this;
_this.cache = cache;
_this.storage = storage;
var tokenValue = storage.load('token:token');
if (tokenValue) {
_this.tokenValue = tokenValue;
// this.loadTokenInfo();
}
return _this;
}
Token.prototype.loadTokenInfo = function () {
return tslib_1.__awaiter(this, void 0, void 0, function () {
return tslib_1.__generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, this.cache.refresh('token', {
data: projection_1.tokenProjection,
filter: {
id: this.tokenValue,
},
})];
case 1:
_a.sent();
this.publish();
return [2 /*return*/];
}
});
});
};
Token.prototype.loginByMobile = function (mobile, password, captcha) {
return tslib_1.__awaiter(this, void 0, void 0, function () {
var env, result;
return tslib_1.__generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, env_1.getEnv)()];
case 1:
env = _a.sent();
return [4 /*yield*/, this.cache.exec('loginByMobile', {
password: password,
mobile: mobile,
captcha: captcha,
env: env,
})];
case 2:
result = (_a.sent()).result;
this.tokenValue = result;
this.storage.save('token:token', result);
this.publish();
return [2 /*return*/];
}
});
});
};
Token.prototype.loginByWechatInWebEnv = function (wechatLoginId) {
return tslib_1.__awaiter(this, void 0, void 0, function () {
var env, result;
return tslib_1.__generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, env_1.getEnv)()];
case 1:
env = _a.sent();
return [4 /*yield*/, this.cache.exec('loginByWechat', {
env: env,
wechatLoginId: wechatLoginId,
})];
case 2:
result = (_a.sent()).result;
this.tokenValue = result;
this.storage.save('token:token', result);
this.publish();
return [2 /*return*/];
}
});
});
};
Token.prototype.loginWechat = function (code, params) {
return tslib_1.__awaiter(this, void 0, void 0, function () {
var env, result;
return tslib_1.__generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, env_1.getEnv)()];
case 1:
env = _a.sent();
return [4 /*yield*/, this.cache.exec('loginWechat', {
code: code,
env: env,
wechatLoginId: params === null || params === void 0 ? void 0 : params.wechatLoginId,
})];
case 2:
result = (_a.sent()).result;
this.tokenValue = result;
this.storage.save('token:token', result);
this.publish();
return [2 /*return*/];
}
});
});
};
Token.prototype.loginWechatMp = function () {
return tslib_1.__awaiter(this, void 0, void 0, function () {
var code, env, result;
return tslib_1.__generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, wx.login()];
case 1:
code = (_a.sent()).code;
return [4 /*yield*/, (0, env_1.getEnv)()];
case 2:
env = _a.sent();
return [4 /*yield*/, this.cache.exec('loginWechatMp', {
code: code,
env: env,
})];
case 3:
result = (_a.sent()).result;
this.tokenValue = result;
this.storage.save('token:token', result);
this.publish();
return [2 /*return*/];
}
});
});
};
Token.prototype.syncUserInfoWechatMp = function () {
return tslib_1.__awaiter(this, void 0, void 0, function () {
var info, _a, nickname, avatarUrl, encryptedData, signature, iv;
return tslib_1.__generator(this, function (_b) {
switch (_b.label) {
case 0: return [4 /*yield*/, wx.getUserProfile({
desc: '同步微信昵称和头像信息',
})];
case 1:
info = _b.sent();
_a = info.userInfo, nickname = _a.nickName, avatarUrl = _a.avatarUrl, encryptedData = info.encryptedData, signature = info.signature, iv = info.iv;
return [4 /*yield*/, this.cache.exec('syncUserInfoWechatMp', {
nickname: nickname,
avatarUrl: avatarUrl,
encryptedData: encryptedData,
signature: signature,
iv: iv,
})];
case 2:
_b.sent();
this.publish();
return [2 /*return*/];
}
});
});
};
Token.prototype.logout = function () {
return tslib_1.__awaiter(this, void 0, void 0, function () {
return tslib_1.__generator(this, function (_a) {
// await this.cache.exec('logout', {});
this.removeToken();
return [2 /*return*/];
});
});
};
Token.prototype.removeToken = function () {
this.tokenValue = undefined;
this.storage.remove('token:token');
this.publish();
};
Token.prototype.getTokenValue = function () {
return this.tokenValue;
};
Token.prototype.getToken = function (allowUnloggedIn, context) {
if (this.tokenValue) {
var token = this.cache.get('token', {
data: projection_1.tokenProjection,
filter: {
id: this.tokenValue,
},
}, context)[0];
if (!token) {
this.loadTokenInfo();
if (allowUnloggedIn) {
return undefined;
}
throw new Exception_2.OakUserInfoLoadingException();
}
return token;
}
if (allowUnloggedIn) {
return undefined;
}
throw new Exception_1.OakUnloggedInException();
};
Token.prototype.getUserId = function (allowUnloggedIn, context) {
var token = this.getToken(allowUnloggedIn, context);
if (token === null || token === void 0 ? void 0 : token.userId) {
return token.userId;
}
};
// getUserInfo 不要求登录
Token.prototype.getUserInfo = function (context) {
var token = this.getToken(true, context);
if (token === null || token === void 0 ? void 0 : token.user) {
return token.user;
}
};
Token.prototype.isRoot = function (context) {
var _a;
var token = this.getToken(true, context);
return !!((_a = token === null || token === void 0 ? void 0 : token.user) === null || _a === void 0 ? void 0 : _a.isRoot);
};
/**
* 这个是指token的player到底是不是root
* @returns
*/
Token.prototype.isReallyRoot = function (context) {
var _a;
var token = this.getToken(true, context);
return !!((_a = token === null || token === void 0 ? void 0 : token.player) === null || _a === void 0 ? void 0 : _a.isRoot);
};
Token.prototype.sendCaptcha = function (mobile) {
return tslib_1.__awaiter(this, void 0, void 0, function () {
var env, result;
return tslib_1.__generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, env_1.getEnv)()];
case 1:
env = _a.sent();
return [4 /*yield*/, this.cache.exec('sendCaptcha', {
mobile: mobile,
env: env,
})];
case 2:
result = (_a.sent()).result;
return [2 /*return*/, result];
}
});
});
};
Token.prototype.switchTo = function (userId) {
return tslib_1.__awaiter(this, void 0, void 0, function () {
var currentUserId;
return tslib_1.__generator(this, function (_a) {
switch (_a.label) {
case 0:
if (!this.isReallyRoot()) {
throw new Exception_1.OakUserUnpermittedException();
}
currentUserId = this.getUserId();
if (currentUserId === userId) {
throw new Exception_1.OakRowInconsistencyException(undefined, '您已经是当前用户');
}
return [4 /*yield*/, this.cache.exec('switchTo', {
userId: userId,
})];
case 1:
_a.sent();
this.publish();
return [2 /*return*/];
}
});
});
};
Token.prototype.refreshWechatPublicUserInfo = function () {
return tslib_1.__awaiter(this, void 0, void 0, function () {
return tslib_1.__generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, this.cache.exec('refreshWechatPublicUserInfo', {})];
case 1:
_a.sent();
this.publish();
return [2 /*return*/];
}
});
});
};
Token.prototype.getWechatMpUserPhoneNumber = function (code) {
return tslib_1.__awaiter(this, void 0, void 0, function () {
var env;
return tslib_1.__generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, env_1.getEnv)()];
case 1:
env = _a.sent();
return [4 /*yield*/, this.cache.exec('getWechatMpUserPhoneNumber', {
code: code,
env: env,
})];
case 2:
_a.sent();
this.publish();
return [2 /*return*/];
}
});
});
};
return Token;
}(Feature_1.Feature));
exports.Token = Token;