-
Notifications
You must be signed in to change notification settings - Fork 141
名前[姓]/名前[名]に半角・全角スペースが登録できてしまう件の修正 #4453
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
Open
otsuka-star
wants to merge
4
commits into
baserproject:5.3.x
Choose a base branch
from
otsuka-star:CU_ALL_TEST-16
base: 5.3.x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+36
−0
Open
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -151,11 +151,25 @@ public function validationDefault(Validator $validator): Validator | |
| ->scalar('real_name_1') | ||
| ->maxLength('real_name_1', 50, __d('baser_core', '名前[姓]は50文字以内で入力してください。')) | ||
| ->requirePresence('real_name_1', 'create', __d('baser_core', '名前[姓]を入力してください。')) | ||
| ->notEmptyString('real_name_1', __d('baser_core', '名前[姓]を入力してください。')); | ||
| ->notEmptyString('real_name_1', __d('baser_core', '名前[姓]を入力してください。')) | ||
| ->add('real_name_1', [ | ||
| 'noWhitespace' => [ | ||
| 'rule' => function ($value) { | ||
| return !preg_match('/[ ]/u', $value); | ||
| }, | ||
| 'message' => __d('baser_core', '名前[姓]に半角・全角スペースは使用できません。') | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
上記はすでに多言語化、対応ファイルが追記されているのかと考えましたが、まだのようなので、以下ファイルに多言語化対応などを追記する必要がありそうです。 例:
なお別prで対応いただく形であれば問題ないと思います。 |
||
| ]]); | ||
| $validator | ||
| ->scalar('real_name_2') | ||
| ->maxLength('real_name_2', 50, __d('baser_core', '名前[名]は50文字以内で入力してください。')) | ||
| ->allowEmptyString('real_name_2'); | ||
| ->allowEmptyString('real_name_2') | ||
| ->add('real_name_2', [ | ||
| 'noWhitespace' => [ | ||
| 'rule' => function ($value) { | ||
| return !preg_match('/[ ]/u', $value); | ||
| }, | ||
| 'message' => __d('baser_core', '名前[名]に半角・全角スペースは使用できません。') | ||
| ]]); | ||
| $validator | ||
| ->scalar('nickname') | ||
| ->maxLength('nickname', 255, __d('baser_core', 'ニックネームは255文字以内で入力してください。')) | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
カスタムでバリデーションルールを実装するより、
regexで対応できるのではと考えていますがどうでしょうか?コアでも
regexが多用されている印象があり、複雑なロジックの場合だけカスタムでバリデーションルールが実装されている気がします。3.8系みたいですが以下がまとまっています。
https://qiita.com/azukiazusa/items/9e8bbe461bdbc7ee572c