mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00

* feat: add feishu & yuque dataset (#3379) * feat: add feishu & yuque dataset * fix ts * fix ts * move type position * fix * fix: merge interface * fix * feat: dingtalk sso support (#3408) * fix: optional sso state * feat: dingtalk bot * feat: dingtalk sso login * chore: move i18n to user namespace * feat: dingtalk bot integration (#3415) * feat: dingtalk bot integration * docs: config dingtalk bot * feat:sear XNG服务 (#3413) * feat:sear XNG服务 * 补充了courseUrl * 添加了官方文档 * 错误时返回情况修正了一下 * Tracks (#3420) * feat: node intro * feat: add domain track * dingding sso login * perf: api dataset code and add doc * feat: tracks * feat: searXNG plugins * fix: ts * feat: delete node tracks (#3423) * fix: dingtalk bot GET verification (#3424) * 4.8.16 test: fix: plugin inputs render;fix: ui offset (#3426) * fix: ui offset * perf: dingding talk * fix: plugin inputs render * feat: menu all folder (#3429) * fix: recall code --------- Co-authored-by: heheer <heheer@sealos.io> Co-authored-by: a.e. <49438478+I-Info@users.noreply.github.com> Co-authored-by: Jiangween <145003935+Jiangween@users.noreply.github.com>
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
/* bill common */
|
|
import { PRICE_SCALE } from '../constants';
|
|
import { UsageSourceEnum } from './constants';
|
|
import { AuthUserTypeEnum } from '../../permission/constant';
|
|
import { PublishChannelEnum } from '../../outLink/constant';
|
|
|
|
/**
|
|
* dataset price / PRICE_SCALE = real price
|
|
*/
|
|
export const formatStorePrice2Read = (val = 0, multiple = 1) => {
|
|
return Number(((val / PRICE_SCALE) * multiple).toFixed(10));
|
|
};
|
|
|
|
export const getUsageSourceByAuthType = ({
|
|
shareId,
|
|
authType
|
|
}: {
|
|
shareId?: string;
|
|
authType?: `${AuthUserTypeEnum}`;
|
|
}) => {
|
|
if (shareId) return UsageSourceEnum.shareLink;
|
|
if (authType === AuthUserTypeEnum.apikey) return UsageSourceEnum.api;
|
|
return UsageSourceEnum.fastgpt;
|
|
};
|
|
|
|
export const getUsageSourceByPublishChannel = (publishchannel: PublishChannelEnum) => {
|
|
switch (publishchannel) {
|
|
case PublishChannelEnum.share:
|
|
return UsageSourceEnum.share;
|
|
case PublishChannelEnum.iframe:
|
|
return UsageSourceEnum.shareLink;
|
|
case PublishChannelEnum.apikey:
|
|
return UsageSourceEnum.api;
|
|
case PublishChannelEnum.feishu:
|
|
return UsageSourceEnum.feishu;
|
|
case PublishChannelEnum.wecom:
|
|
return UsageSourceEnum.wecom;
|
|
case PublishChannelEnum.officialAccount:
|
|
return UsageSourceEnum.official_account;
|
|
case PublishChannelEnum.dingtalk:
|
|
return UsageSourceEnum.dingtalk;
|
|
default:
|
|
return UsageSourceEnum.fastgpt;
|
|
}
|
|
};
|