Note
This Software is fork of Misskey. Please go to Misskey unless you are really intended to work on This Software.
ご興味をもっていただきありがとうございます。
Note
このレポジトリではMisskeyとは異なり、日本語を開発の第一言語とします。
このレポジトリはksrgtechが管理するレポジトリであり、故にksrgtechの思想が適用されます。
そのため、その思想が理解されない場合は貢献をお断りする場合があります。
issueを作成するユーザーは重複を防ぐために、作成する前に同一の趣旨でissueが作られていないか確認することが奨励されています。
issueはforkの最新ブランチ上で解決した時点で閉じるものとし、issue自体に問題があるケースを除いてそれより前に閉じられるようなことはあってはなりません。
master、**develop、l10n_developの意味論は上流のプロジェクトに従うものとします。forkはフォーク用のブランチです。Pull requestのデフォルトのターゲットとなっています。
- ロックファイルを除いた変更行数が1500行以上のPull Requestは複数のPRに分割されることが推奨されます。
- PRの題名はセマンティックコミットに沿ったものとします。
- 機能追加は
feat以外用いてはなりません。 - 単独のプロジェクトの変更の場合は
feat(backend)などのように、パッケージ名をつけることが推奨されます。
- 機能追加は
- Lintはマージ前にすべて解決される必要があります。
- Lintを回避することは原則禁止します。
- テストケースは可能な限り追加してください。
- issueが解決される場合、closing keywordをつけて参照してください。
- Misskeyとは異なり、PRはマージコミットを伴うマージによって取り込むものとします。squash、及び
forkブランチのHEADへリベースしてからfast forwardする取り込みは禁止します。- これはbisectを容易にするための措置です。
リリースバージョンはMisskeyのバージョンに、- (半角ハイフン) を付け加え、その直後にセマンティックバージョニングに沿ったバージョンをつけるものとします。
- Commit version changes in the
developbranch (package.json) - Create a release PR.
- Into
masterfromdevelopbranch. - The title must be in the format
Release: x.y.z.x.y.zis the new version you are trying to release.
- Into
- Deploy and perform a simple QA check. Also verify that the tests passed.
- Merge it. (Do not squash commit)
- Create a release of GitHub
- The target branch must be
master - The tag name must be the version
- The target branch must be
Note
Why this instruction is necessary:
- To perform final QA checks
- To distribute responsibility
- To check direct commits to develop
- To celebrate the release together 🎉
INSTANCE_ROOT/i以下のスキーマはbackend及びfrontendのみが知る実装依存の詳細であり、セマンティックバージョニングの範囲ではありません。
Before developing, you have to set up environment. Misskey requires Redis, PostgreSQL, and FFmpeg.
You would want to install Meilisearch to experiment related features. Technically, meilisearch is not strict requirement, but some features and tests require it.
There are a few ways to proceed.
You could install them in system-wide (such as from package manager).
You could obtain middleware container by typing docker compose -f $PROJECT_ROOT/compose.local-db.yml up -d.
Devcontainer also has necessary setting. This method can be done by connecting from VSCode.
Instead of running pnpm locally, you can use Dev Container to set up your development environment.
To use Dev Container, open the project directory on VSCode with Dev Containers installed.
Note: If you are using Windows, please clone the repository with WSL. Using Git for Windows will result in broken files due to the difference in how newlines are handled.
It will run the following command automatically inside the container.
git submodule update --init
pnpm install --frozen-lockfile
cp .devcontainer/devcontainer.yml .config/default.yml
pnpm build
pnpm migrateAfter finishing the migration, you can proceed.
During development, it is useful to use the
pnpm dev
command.
- Server-side source files and automatically builds them if they are modified. Automatically start the server process(es).
- Vite HMR (just the
vitecommand) is available. The behavior may be different from production. - Service Worker is watched by esbuild.
- The front end can be viewed by accessing
http://localhost:5173. - The backend listens on the port configured with
portin .config/default.yml. If you have not changed it from the default, it will be "http://localhost:3000". If "port" in .config/default.yml is set to something other than 3000, you need to change the proxy settings in packages/frontend/vite.config.local-dev.ts.
pnpm dev has another mode with MK_DEV_PREFER=backend.
MK_DEV_PREFER=backend pnpm dev
- This mode is closer to the production environment than the default mode.
- Vite runs behind the backend (the backend will proxy Vite at /vite).
- You can see Misskey by accessing
http://localhost:3000(Replace3000with the port configured withportin .config/default.yml). - To change the port of Vite, specify with
VITE_PORTenvironment variable. - HMR may not work in some environments such as Windows.
- Test codes are located in
/packages/backend/test.
Create a config file.
cp .github/misskey/test.yml .config/
Prepare DB/Redis for testing.
docker compose -f packages/backend/test/compose.yml up
Alternatively, prepare an empty (data can be erased) DB and edit .config/test.yml.
Run all test.
pnpm test
pnpm jest -- foo.ts
TODO
MISSKEY_CONFIG_YML: Specify the file path of config.yml instead of default.yml (e.g.2nd.yml).MISSKEY_WEBFINGER_USE_HTTP: If it's set true, WebFinger requests will be http instead of https, useful for testing federation between servers in localhost. NEVER USE IN PRODUCTION.
Misskey uses GitHub Actions for executing automated tests.
Configuration files are located in /.github/workflows.
This Software uses Vue(v3) as its front-end framework.
- Use TypeScript.
- When creating a new component, please use the Composition API (with setup sugar and ref sugar) instead of the Options API.
- Some of the existing components are implemented in the Options API, but it is an old implementation. Refactors that migrate those components to the Composition API are also welcome.
niraxは、Misskeyで使用しているオリジナルのフロントエンドルーティングシステムです。 vue-routerから影響を多大に受けているので、まずはvue-routerについて学ぶことをお勧めします。
ルート定義は、以下の形式のオブジェクトの配列です。
type RootDefinition = {
name?: string;
path: string;
component: Component;
query?: Record<string, string>;
loginRequired?: boolean;
hash?: string;
globalCacheKey?: string;
children?: RouteDef[];
}Warning
現状、ルートは定義された順に評価されます。
たとえば、/foo/:idルート定義の次に/foo/barルート定義がされていた場合、後者がマッチすることはありません。
vue-routerとの最大の違いは、niraxは複数のルーターが存在することを許可している点です。 これにより、アプリ内ウィンドウでブラウザとは個別にルーティングすることなどが可能になります。
Misskey uses Storybook for UI development.
pnpm --filter misskey-js buildpnpm --filter frontend storybook-devWhen you create a new component (in this example, MyComponent.vue), the story file (MyComponent.stories.ts) will be automatically generated by the .storybook/generate.js script.
You can override the default story by creating a impl story file (MyComponent.stories.impl.ts).
/* eslint-disable @typescript-eslint/explicit-function-return-type */
import { StoryObj } from '@storybook/vue3';
import MyComponent from './MyComponent.vue';
export const Default = {
render(args) {
return {
components: {
MyComponent,
},
setup() {
return {
args,
};
},
computed: {
props() {
return {
...this.args,
};
},
},
template: '<MyComponent v-bind="props" />',
};
},
args: {
foo: 'bar',
},
parameters: {
layout: 'centered',
},
} satisfies StoryObj<typeof MyComponent>;If you want to opt-out from the automatic generation, create a MyComponent.stories.impl.ts file and add the following line to the file.
import MyComponent from './MyComponent.vue';
void MyComponent;You can override the component meta by creating a meta story file (MyComponent.stories.meta.ts).
export const argTypes = {
scale: {
control: {
type: 'range',
min: 1,
max: 4,
},
},
};Also, you can use msw to mock API requests in the storybook. Creating a MyComponent.stories.msw.ts file to define the mock handlers.
import { HttpResponse, http } from 'msw';
export const handlers = [
http.post('/api/notes/timeline', ({ request }) => {
return HttpResponse.json([]);
}),
];Don't forget to re-run the .storybook/generate.js script after adding, editing, or removing the above files.
まずは簡単にforwardRefを試してみる
export class FooService {
constructor(
@Inject(forwardRef(() => BarService))
private barService: BarService
) {
}
}できなければOnModuleInitを使う
import { Injectable, OnModuleInit } from '@nestjs/common';
import { ModuleRef } from '@nestjs/core';
import { BarService } from '@/core/BarService';
@Injectable()
export class FooService implements OnModuleInit {
private barService: BarService // constructorから移動してくる
constructor(
private moduleRef: ModuleRef,
) {
}
async onModuleInit() {
this.barService = this.moduleRef.get(BarService.name);
}
public async niceMethod() {
return await this.barService.incredibleMethod({ hoge: 'fuga' });
}
}テストでonModuleInitを呼び出す必要がある
// import ...
describe('test', () => {
let app: TestingModule;
let fooService: FooService; // for test case
let barService: BarService; // for test case
beforeEach(async () => {
app = await Test.createTestingModule({
imports: ...,
providers: [
FooService,
{ // mockする (mockは必須ではないかもしれない)
provide: BarService,
useFactory: () => ({
incredibleMethod: jest.fn(),
}),
},
{ // Provideにする
provide: BarService.name,
useExisting: BarService,
},
],
})
.useMocker(...
.compile();
fooService = app.get<FooService>(FooService);
barService = app.get<BarService>(BarService) as jest.Mocked<BarService>;
// onModuleInitを実行する
await fooService.onModuleInit();
});
test('nice', () => {
await fooService.niceMethod();
expect(barService.incredibleMethod).toHaveBeenCalled();
expect(barService.incredibleMethod.mock.lastCall![0])
.toEqual({ hoge: 'fuga' });
});
})例えばGoogleが自社サービスをMap、Earth、DriveではなくGoogle Map、Google Earth、Google Driveのように命名するのと同じ
コード上でMisskeyのドメイン固有の概念にはMiをprefixすることで、他のドメインの同様の概念と区別できるほか、名前の衝突を防ぐ。
ただし、文脈上Misskeyのものを指すことが明らかであり、名前の衝突の恐れがない場合は、一時的なローカル変数に限ってMiを省略してもよい。
Just execute pnpm to fix it.
#6441
SQLをクエリビルダで組み立てる際、使用するプレースホルダは重複してはならない 例えば
query.andWhere(new Brackets(qb => {
for (const type of ps.fileType) {
qb.orWhere(`:type = ANY(note.attachedFileTypes)`, { type: type });
}
}));と書くと、ループ中でtypeというプレースホルダが複数回使われてしまいおかしくなる
だから次のようにする必要がある
query.andWhere(new Brackets(qb => {
for (const type of ps.fileType) {
const i = ps.fileType.indexOf(type);
qb.orWhere(`:type${i} = ANY(note.attachedFileTypes)`, { [`type${i}`]: type });
}
}));const foo = await Foos.findOne({
bar: Not(null)
});のようなクエリ(barがnullではない)は期待通りに動作しない。
次のようにします:
const foo = await Foos.findOne({
bar: Not(IsNull())
});SQLを発行する際、パラメータがnullになる可能性のある場合はSQL文を出し分けなければならない
例えば
query.where('file.folderId = :folderId', { folderId: ps.folderId });という処理で、ps.folderIdがnullだと結果的にfile.folderId = nullのようなクエリが発行されてしまい、これは正しいSQLではないので期待した結果が得られない
だから次のようにする必要がある
if (ps.folderId) {
query.where('file.folderId = :folderId', { folderId: ps.folderId });
} else {
query.where('file.folderId IS NULL');
}SQLを発行する際、INのパラメータが[](空の配列)になる可能性のある場合はSQL文を出し分けなければならない
例えば
const users = await Users.find({
id: In(userIds)
});という処理で、userIdsが[]だと結果的にuser.id IN ()のようなクエリが発行されてしまい、これは正しいSQLではないので期待した結果が得られない
だから次のようにする必要がある
const users = userIds.length > 0 ? await Users.find({
id: In(userIds)
}) : [];SQLでは配列のインデックスは1始まり。
[a, b, c]の aにアクセスしたいなら[0]ではなく[1]と書く
nullが含まれる可能性のあるカラムにINするときは、そのままだとおかしくなるのでORなどでnullのハンドリングをしよう。
enumの列挙の内容の削除は、その値をもつレコードを全て削除しないといけない
削除が重たかったり不可能だったりする場合は、削除しないでおく
packages/backendで:
pnpm dlx typeorm migration:generate -d ormconfig.js -o <migration name>- 生成後、ファイルをmigration下に移してください
- 作成されたスクリプトは不必要な変更を含むため除去してください
JSON Schemaで、objectに対してanyOfを使う場合、anyOfの中でpropertiesを定義しないこと。 バリデーションが効かないため。(SchemaTypeもそのように作られており、objectのanyOf内のpropertiesは捨てられます) misskey-dev#10082
テキストhogeおよびfugaについて、片方を必須としつつ両方の指定もありうる場合:
export const paramDef = {
type: 'object',
properties: {
hoge: { type: 'string', minLength: 1 },
fuga: { type: 'string', minLength: 1 },
},
anyOf: [
{ required: ['hoge'] },
{ required: ['fuga'] },
],
} as const;Vueのコンポーネントのdataオプションとしてmisskey.jsのコネクションを設定するとき、必ずmarkRawでラップしてください。インスタンスが不必要にリアクティブ化されることで、misskey.js内の処理で不具合が発生するとともに、パフォーマンス上の問題にも繋がる。なお、Composition APIを使う場合はこの限りではない(リアクティブ化はマニュアルなため)。
TypeScriptでjsonをimportすると、tscでコンパイルするときにそのjsonファイルも一緒にdistディレクトリに吐き出されてしまう。この挙動により、意図せずファイルの書き換えが発生することがあるので、jsonをimportするときは書き換えられても良いものかどうか確認すること。書き換えされて欲しくない場合は、importで読み込むのではなく、fs.readFileSyncなどの関数を使って読み込むようにすればよい。
コンポーネント自身がmarginを設定するのは問題の元となることはよく知られている marginはそのコンポーネントを使う側が設定する
広告ブロッカーで誤ってブロックされる
ESMではディレクトリインポートは廃止されているのと、ディレクトリインポートせずともファイル名が index だと何故か一部のライブラリ?でディレクトリインポートだと見做されてエラーになる