適当にメモするところ
要件メモとか
WEB
-
React のつもりだったけどとりあえずHTMLとCSSとJavaScriptで書く
-
ページ遷移はURL書き換えかJSでコンテンツをゴリゴリ書き換える
-
headerは上の部分にいい感じにいてくれるようにする
-
アップロード時のファイルタイプチェック
-
アップロード時のオリジナルファイルが0byteになる問題を修正しろ
-
ファイル更新時の処理見直し(ディレクトリに直接ファイルが入ることを考慮するかどうか)
- ファイル名にフラグを付けておいてそれで判定する方法
- オリジナルとサムネイルそれぞれ同じ名前のファイルが有るかをチェックする方法
API
- rootページ(変更の可能性あり)
URL: https://host-name/image_viewer
- 画像一覧表示のページ(変更の可能性あり)
URL: https://host-name/thumbnail?p={PageNum}
API: GET https://host-name:port/api/v1/twimg/thumbnail?p={PageNum}&get={NumberAcquired}&s={ImageSize}
{
"PageLimit": "MaxPage",
"PageNumber": "PageNum",
"NumberAcquired": "NumberAcquired",
"ImgSize": "ImageSize",
"Thumbnail": [
{
"TwitterID": "TwiID",
"FileName": "NAME",
},
{
"TwitterID": "TwiID",
"FileName": "NAME",
}
]
}
- TwitterIDで検索した場合の一覧表示ページ(変更の可能性あり)
URL: https://host-name/search?id={TwitterID}
API: GET https://host-name:port/api/v1/twimg/search?tid={TwitterID}&p={PageNum}&get={NumberAcquired}&s={ImageSize}
{
"TwitterID": "TwiID",
"PageLimit": "MaxPage",
"PageNumber": "PageNum",
"NumberAcquired": "NumberAcquired",
"ImgSize": "ImageSize",
"Thumbnail": [
{
"TwitterID": "TwiID",
"FileName": "NAME",
},
{
"TwitterID": "TwiID",
"FileName": "NAME",
}
]
}
- 一覧表示から画像の個別表示ページ(変更の可能性あり)
URL: https://host-name/original?id={TwitterID}&img={FileName}
API: GET https://host-name:port/api/v1/twimg/original?tid={TwitterID}&fname={FileName}
{
"Image": {
"TwitterID": "TwiID",
"FileName": "NAME",
}
}
DB
ID |
TwiID |
FileName |
CreatedAt |
1 |
a |
test-a |
YYYY/MM/DD Add-Date-Time |
2 |
b |
test-b |
YYYY/MM/DD Add-Date-Time |
3 |
c |
test-c |
YYYY/MM/DD Add-Date-Time |
・ |
・ |
・ |
・ |
・ |
・ |
・ |
・ |
・ |
・ |
・ |
・ |