Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Misskey形式のカスタム絵文字情報のインポート #841

Open
kmycode opened this issue Sep 8, 2024 · 1 comment
Open

Misskey形式のカスタム絵文字情報のインポート #841

kmycode opened this issue Sep 8, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@kmycode
Copy link
Owner

kmycode commented Sep 8, 2024

欲しい機能

以下のJSONが設定されたファイルを使用することで、カスタム絵文字の情報をインポートできるようにする
カスタム絵文字の画像、ショートコードなどは別途既存のCLIコマンドで一括取り込みを行い、それとは別に以下JSONをCLIコマンドで取り込んで、すでにあるカスタム絵文字の情報を上書きする

{
  "metaVersion": 2,
  "host": "misskey.kmy.blue",
  "exportedAt": "Thu Jan 11 2024 23:43:54 GMT+0900 (Japan Standard Time)",
  "emojis": [
    {
      "fileName": "ohagi.png",
      "downloaded": true,
      "emoji": {
        "id": "ohagiohagi",
        "updatedAt": "2023-11-05T07:36:35.148Z",
        "name": "ショートコード",
        "host": null,
        "category": "絵文字のカテゴリ名",
        "originalUrl": "不要",
        "publicUrl": "不要",
        "uri": null,
        "type": "image/png",
        "aliases": ["おはぎ", "貸しおはぎ", "おはぎ募集中"],
        "license": "ライセンス。改行コードあり",
        "width": 100,
        "height": 100
      }
    }
  ]
}

必要性

Misskeyではカスタム絵文字を大量に登録するケースが多く、Misskeyからの移行がスムーズにできるようにする

@kmycode kmycode added the enhancement New feature or request label Sep 8, 2024
@kmycode
Copy link
Owner Author

kmycode commented Sep 8, 2024

実際に利用しそうなデータだけ

{
  "emojis": [
    {
      "emoji": {
        "name": "ショートコード",
        "aliases": ["おはぎ", "貸しおはぎ", "おはぎ募集中"],
        "license": "ライセンス。改行コードあり"
      }
    }
  ]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant