-
Notifications
You must be signed in to change notification settings - Fork 219
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
fix: Error when creating pages with deep hierarchy #9487
fix: Error when creating pages with deep hierarchy #9487
Conversation
|
@@ -117,6 +117,7 @@ const restrictedPatternsToCreate: Array<RegExp> = [ | |||
/^\/(_search|_private-legacy-pages)(\/.*|$)/, | |||
/^\/(installer|register|login|logout|admin|me|files|trash|paste|comments|tags|share|attachment)(\/.*|$)/, | |||
/^\/user(?:\/[^/]+)?$/, // https://regex101.com/r/9Eh2S1/1 | |||
/^(\/.+){500,}$/, // avoid deep layer path. see: https://regex101.com/r/L0kzOD/1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
500も一般的な利用の範囲では現実的ではないので、130にしましょう
考え方
ユーザーの潜在ニーズとして、MongoDB 内の全ページを一般的な OS のファイルシステム上にディレクトリツリーとして再構築できるのがのぞましい。その際の最大階層はいくつか?
参考
裏取り
https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file#maximum-path-length-limitation
Apple の方は
You should assume that the number of directories in a path is limited to 100 or fewer.
のような記述は見当たらず…
Claude を問い詰めたら「質問の根拠となる情報を適切に示せず、誤った情報を述べてしまい大変失礼いたしました。」と謝られた。
だが Win に 260 char 制限があるのは確かなので、今回は130とする。
Summary
Task
Noes
動作確認をしている中で、510 程度のスラッシュの数を持つパスでエラーが発生したので、500 以上は作れないようにしている。
深い階層のページを作成する方法は次の2つを想定しており、どちらでも作成できない旨を伝えられることを確認済み
スラッシュ 5 個以上は作れないようにして実験