feat: migrate to new registry, fix #6

close #4
close #5
This commit is contained in:
Shigma 2023-10-13 22:24:31 +08:00
parent eec3db2b86
commit 15b9c54b32
No known key found for this signature in database
GPG Key ID: 21C89B0B92907E14
2 changed files with 26 additions and 14 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "koishi-plugin-market-info", "name": "koishi-plugin-market-info",
"description": "Koishi plugin market information", "description": "Koishi plugin market information",
"version": "1.2.0", "version": "2.0.0",
"main": "lib/index.js", "main": "lib/index.js",
"typings": "lib/index.d.ts", "typings": "lib/index.d.ts",
"files": [ "files": [
@ -22,10 +22,14 @@
"build": "atsc -b" "build": "atsc -b"
}, },
"koishi": { "koishi": {
"browser": true,
"description": { "description": {
"en": "Plugin market information", "en": "Plugin market information",
"zh": "插件市场查询与订阅,第一时间获知插件更新!" "zh": "插件市场查询与订阅,第一时间获知插件更新!"
},
"service": {
"required": [
"installer"
]
} }
}, },
"keywords": [ "keywords": [
@ -40,13 +44,14 @@
"manager" "manager"
], ],
"peerDependencies": { "peerDependencies": {
"koishi": "^4.10.5" "koishi": "^4.15.0"
}, },
"devDependencies": { "devDependencies": {
"@koishijs/registry": "^4.6.0", "@koishijs/plugin-market": "^2.3.1",
"@koishijs/registry": "^6.0.4",
"@types/node": "^18.15.5", "@types/node": "^18.15.5",
"atsc": "^1.2.2", "atsc": "^1.2.2",
"koishi": "^4.12.1", "koishi": "^4.15.0",
"typescript": "^4.9.5" "typescript": "^5.2.2"
} }
} }

View File

@ -1,10 +1,13 @@
import { Context, Dict, Logger, Schema, Time } from 'koishi' import { Context, Dict, Logger, Schema, Time } from 'koishi'
import type { AnalyzedPackage, MarketResult } from '@koishijs/registry' import {} from '@koishijs/plugin-market'
import type { SearchObject, SearchResult } from '@koishijs/registry'
const logger = new Logger('market') const logger = new Logger('market')
export const name = 'market-info' export const name = 'market-info'
export const using = ['installer']
export interface Rule { export interface Rule {
platform: string platform: string
channelId: string channelId: string
@ -40,8 +43,8 @@ export const Config: Schema<Config> = Schema.object({
export function apply(ctx: Context, config: Config) { export function apply(ctx: Context, config: Config) {
ctx.i18n.define('zh', require('./locales/zh-CN')) ctx.i18n.define('zh', require('./locales/zh-CN'))
const makeDict = (result: MarketResult) => { const makeDict = (result: SearchResult) => {
const dict: Dict<AnalyzedPackage> = {} const dict: Dict<SearchObject> = {}
for (const object of result.objects) { for (const object of result.objects) {
if (object.manifest.hidden && !config.showHidden) continue if (object.manifest.hidden && !config.showHidden) continue
dict[object.shortname] = object dict[object.shortname] = object
@ -50,7 +53,7 @@ export function apply(ctx: Context, config: Config) {
} }
const getMarket = async () => { const getMarket = async () => {
const data = await ctx.http.get<MarketResult>('https://registry.koishi.chat/market.json') const data = await ctx.http.get<SearchResult>(ctx.installer.endpoint)
return makeDict(data) return makeDict(data)
} }
@ -72,16 +75,20 @@ export function apply(ctx: Context, config: Config) {
ctx.setInterval(async () => { ctx.setInterval(async () => {
const current = await getMarket() const current = await getMarket()
const diff = Object.keys({ ...previous, ...current }).map((name) => { const diff = Object.keys({ ...previous, ...current }).map((name) => {
const version1 = previous[name]?.version const version1 = previous[name]?.package.version
const version2 = current[name]?.version const version2 = current[name]?.package.version
if (version1 === version2) return if (version1 === version2) return
if (!version1) { if (!version1) {
let output = <p><i18n path="market-info.created"></i18n></p> let output = <p><i18n path="market-info.created"></i18n></p>
if (config.showPublisher) output += ` (@${current[name].publisher.username})` if (config.showPublisher) output += ` (@${current[name].package.publisher.username})`
if (config.showDescription) { if (config.showDescription) {
const { description } = current[name].manifest const { description } = current[name].manifest
output += `\n ${description.zh || description.en}` if (description && typeof description === 'object') {
output += `\n ${description.zh || description.en}`
} else if (description && typeof description === 'string') {
output += `\n ${description}`
}
} }
return output return output
} }