2017-03-31 01:11:38 +09:00
|
|
|
# Contribution guide
|
2018-09-01 18:02:04 +09:00
|
|
|
:v: Thanks for your contributions :v:
|
2017-03-26 21:32:19 +09:00
|
|
|
|
2018-09-01 18:02:04 +09:00
|
|
|
## Issues
|
|
|
|
Feature suggestions and bug reports are filed in https://github.com/syuilo/misskey/issues .
|
|
|
|
Before creating a new issue, please search existing issues to avoid duplication.
|
|
|
|
If you find the existing issue, please add your reaction or comment to the issue.
|
2017-03-26 21:32:19 +09:00
|
|
|
|
2018-09-01 18:02:04 +09:00
|
|
|
## Localization (l10n)
|
2018-09-01 18:15:25 +09:00
|
|
|
Please use [Crowdin](https://crowdin.com/project/misskey) for localization.
|
2017-03-26 21:32:19 +09:00
|
|
|
|
2018-09-01 18:15:25 +09:00
|
|
|
![Crowdin](https://d322cqt584bo4o.cloudfront.net/misskey/localized.svg)
|
2017-03-26 21:32:19 +09:00
|
|
|
|
2018-11-10 00:47:36 +09:00
|
|
|
## Internationalization (i18n)
|
|
|
|
Misskey uses [vue-i18n](https://github.com/kazupon/vue-i18n).
|
|
|
|
|
2018-09-01 18:02:04 +09:00
|
|
|
## Documentation
|
|
|
|
* Documents for contributors are located in `/docs`.
|
|
|
|
* Documents for instance admins are located in `/docs`.
|
|
|
|
* Documents for end users are located in `src/docs`.
|
2017-03-26 21:32:19 +09:00
|
|
|
|
2018-09-01 18:02:04 +09:00
|
|
|
## Test
|
|
|
|
* Test codes are located in `/test`.
|
|
|
|
|
|
|
|
## Continuous integration
|
2018-11-05 10:52:07 +09:00
|
|
|
Misskey uses CircleCI for automated test.
|
|
|
|
Configuration files are located in `/.circleci`.
|
2018-12-20 03:01:02 +09:00
|
|
|
|
|
|
|
## Glossary
|
|
|
|
### AP
|
2018-12-20 03:02:19 +09:00
|
|
|
Stands for _**A**ctivity**P**ub_.
|
2018-12-20 03:01:02 +09:00
|
|
|
|
|
|
|
### MFM
|
2018-12-20 03:02:19 +09:00
|
|
|
Stands for _**M**isskey **F**lavored **M**arkdown_.
|
2018-12-20 03:01:02 +09:00
|
|
|
|
|
|
|
### Mk
|
2018-12-20 03:02:19 +09:00
|
|
|
Stands for _**M**iss**k**ey_.
|
2018-12-20 03:44:19 +09:00
|
|
|
|
|
|
|
### SW
|
|
|
|
Stands for _**S**ervice**W**orker_.
|
2019-01-24 19:52:00 +09:00
|
|
|
|
|
|
|
### Nyaize
|
2019-02-26 18:00:47 +09:00
|
|
|
Convert な(na) to にゃ(nya)
|
2019-01-24 19:52:00 +09:00
|
|
|
|
|
|
|
#### Denyaize
|
2019-02-26 18:00:47 +09:00
|
|
|
Revert Nyaize
|
2019-02-07 14:54:14 +09:00
|
|
|
|
|
|
|
## Code style
|
2019-03-16 02:53:35 +09:00
|
|
|
### Use semicolon
|
|
|
|
To avoid ASI Hazard
|
|
|
|
|
2019-02-07 14:54:14 +09:00
|
|
|
### Don't use `export default`
|
|
|
|
Bad:
|
|
|
|
``` ts
|
|
|
|
export default function(foo: string): string {
|
|
|
|
```
|
|
|
|
|
|
|
|
Good:
|
|
|
|
``` ts
|
|
|
|
export function something(foo: string): string {
|
|
|
|
```
|
2019-02-08 04:08:25 +09:00
|
|
|
|
|
|
|
## Directory structure
|
|
|
|
```
|
2019-02-26 18:00:47 +09:00
|
|
|
src ... Source code
|
|
|
|
@types ... Type definitions
|
|
|
|
prelude ... Independence utils for coding JavaScript without side effects
|
|
|
|
misc ... Independence utils for Misskey without side effects
|
|
|
|
service ... Common functions with side effects
|
|
|
|
queue ... Job queues and Jobs
|
|
|
|
server ... Web Server
|
|
|
|
client ... Client
|
2019-02-08 04:08:25 +09:00
|
|
|
mfm ... MFM
|
|
|
|
|
2019-02-26 18:00:47 +09:00
|
|
|
test ... Test code
|
2019-02-08 04:08:25 +09:00
|
|
|
|
|
|
|
```
|
2019-04-07 21:50:36 +09:00
|
|
|
|
|
|
|
## Notes
|
|
|
|
### placeholder
|
|
|
|
SQLをクエリビルダで組み立てる際、使用するプレースホルダは重複してはならない
|
|
|
|
例えば
|
|
|
|
``` ts
|
|
|
|
query.andWhere(new Brackets(qb => {
|
|
|
|
for (const type of ps.fileType) {
|
|
|
|
qb.orWhere(`:type = ANY(note.attachedFileTypes)`, { type: type });
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
```
|
|
|
|
と書くと、ループ中で`type`というプレースホルダが複数回使われてしまいおかしくなる
|
|
|
|
だから次のようにする必要がある
|
|
|
|
```ts
|
|
|
|
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 });
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
```
|
|
|
|
|
|
|
|
### `null` in SQL
|
|
|
|
SQLを発行する際、パラメータが`null`になる可能性のある場合はSQL文を出し分けなければならない
|
|
|
|
例えば
|
|
|
|
``` ts
|
|
|
|
query.where('file.folderId = :folderId', { folderId: ps.folderId });
|
|
|
|
```
|
|
|
|
という処理で、`ps.folderId`が`null`だと結果的に`file.folderId = null`のようなクエリが発行されてしまい、これは正しいSQLではないので期待した結果が得られない
|
|
|
|
だから次のようにする必要がある
|
|
|
|
``` ts
|
|
|
|
if (ps.folderId) {
|
|
|
|
query.where('file.folderId = :folderId', { folderId: ps.folderId });
|
|
|
|
} else {
|
|
|
|
query.where('file.folderId IS NULL');
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### `[]` in SQL
|
|
|
|
SQLを発行する際、`IN`のパラメータが`[]`(空の配列)になる可能性のある場合はSQL文を出し分けなければならない
|
|
|
|
例えば
|
|
|
|
``` ts
|
|
|
|
const users = await Users.find({
|
|
|
|
id: In(userIds)
|
|
|
|
});
|
|
|
|
```
|
|
|
|
という処理で、`userIds`が`[]`だと結果的に`user.id IN ()`のようなクエリが発行されてしまい、これは正しいSQLではないので期待した結果が得られない
|
|
|
|
だから次のようにする必要がある
|
|
|
|
``` ts
|
|
|
|
const users = userIds.length > 0 ? await Users.find({
|
|
|
|
id: In(userIds)
|
|
|
|
}) : [];
|
|
|
|
```
|
|
|
|
|
2019-04-13 14:04:29 +09:00
|
|
|
### 配列のインデックス in SQL
|
|
|
|
SQLでは配列のインデックスは**1始まり**。
|
|
|
|
`[a, b, c]`の `a`にアクセスしたいなら`[0]`ではなく`[1]`と書く
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
### `undefined`にご用心
|
|
|
|
MongoDBの時とは違い、findOneでレコードを取得する時に対象レコードが存在しない場合 **`undefined`** が返ってくるので注意。
|
|
|
|
MongoDBは`null`で返してきてたので、その感覚で`if (x === null)`とか書くとバグる。代わりに`if (x == null)`と書いてください
|
2019-04-13 14:31:05 +09:00
|
|
|
|
|
|
|
### 簡素な`undefined`チェック
|
|
|
|
データベースからレコードを取得するときに、プログラムの流れ的に(ほぼ)絶対`undefined`にはならない場合でも、`undefined`チェックしないとTypeScriptに怒られます。
|
|
|
|
でもいちいち複数行を費やして、発生するはずのない`undefined`をチェックするのも面倒なので、`ensure`というユーティリティ関数を用意しています。
|
|
|
|
例えば、
|
|
|
|
``` ts
|
2019-04-13 14:34:34 +09:00
|
|
|
const user = await Users.findOne(userId);
|
2019-04-13 14:31:05 +09:00
|
|
|
// この時点で user の型は User | undefined
|
|
|
|
if (user == null) {
|
|
|
|
throw 'missing user';
|
|
|
|
}
|
|
|
|
// この時点で user の型は User
|
|
|
|
```
|
|
|
|
という処理を`ensure`を使うと
|
|
|
|
``` ts
|
2019-04-13 14:37:45 +09:00
|
|
|
const user = await Users.findOne(userId).then(ensure);
|
2019-04-13 14:31:05 +09:00
|
|
|
// この時点で user の型は User
|
|
|
|
```
|
|
|
|
という風に書けます。
|
2019-04-13 14:34:34 +09:00
|
|
|
もちろん`ensure`内部でエラーを握りつぶすようなことはしておらず、万が一`undefined`だった場合はPromiseがRejectされ後続の処理は実行されません。
|
|
|
|
``` ts
|
2019-04-13 14:37:45 +09:00
|
|
|
const user = await Users.findOne(userId).then(ensure);
|
2019-04-13 14:34:34 +09:00
|
|
|
// 万が一 Users.findOne の結果が undefined だったら、ensure でエラーが発生するので
|
|
|
|
// この行に到達することは無い
|
2019-04-13 14:36:35 +09:00
|
|
|
// なので、.then(ensure) は
|
|
|
|
// if (user == null) {
|
|
|
|
// throw 'missing user';
|
|
|
|
// }
|
|
|
|
// の糖衣構文のような扱いです
|
2019-04-13 14:34:34 +09:00
|
|
|
```
|