Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/utils/validator/user/forms.go

66 lignes
3,6 Kio
Go
Brut Vue normale Historique

package userValidator
// RegistrationForm is used when creating a user.
type RegistrationForm struct {
2017-07-03 01:47:31 +02:00
Username string `validate:"required,min=3,max=20" form:"username" json:"username"`
Email string `form:"email" json:"email"`
Password string `validate:"required,min=6,max=72,eqfield=ConfirmPassword" form:"password" json:"password"`
ConfirmPassword string `validate:"required" omit:"true" form:"password_confirmation" json:"password_confirmation"` // Omit when binding to user model since user model doesn't have those field
CaptchaID string `validate:"required" omit:"true" form:"captchaID" json:"captchaID"`
TermsAndConditions string `validate:"eq=1" omit:"true" form:"t_and_c" json:"t_and_c"`
}
// LoginForm is used when a user logs in.
type LoginForm struct {
2017-07-04 02:48:20 +02:00
Username string `validate:"required" json:"username" form:"username"`
Password string `validate:"required" json:"password" form:"password"`
RedirectTo string `validate:"-" form:"redirectTo" json:"-"`
RememberMe string `validate:"-" form:"remember_me" json:"-"`
}
// UserForm is used when updating a user.
type UserForm struct {
2017-07-03 01:47:31 +02:00
Username string `validate:"required" form:"username" json:"username" needed:"true" len_min:"3" len_max:"20"`
Email string `json:"email" form:"email"`
Language string `validate:"default=en-us" form:"language" json:"language"`
2017-07-03 02:19:37 +02:00
CurrentPassword string `validate:"omitempty,min=6,max=72" form:"current_password" json:"current_password" omit:"true"`
Password string `validate:"omitempty,min=6,max=72" form:"password" json:"password" len_min:"6" len_max:"72" equalInput:"ConfirmPassword"`
ConfirmPassword string `validate:"omitempty" form:"password_confirmation" json:"password_confirmation" omit:"true"`
2017-07-03 01:47:31 +02:00
Status int `validate:"default=0" form:"status" json:"status"`
Theme string `form:"theme" json:"theme"`
[WIP] Anidex, TT & Nyaa.si uploading (#1604) * Update main.css * Update tomorrow.css * Create upload_multiple.jet.html * Create upload.js * Update upload.jet.html * Update upload.jet.html * Update upload.jet.html * Update tomorrow.css * Update main.css * Update tomorrow.css * Update main.css * Update user.go * Update template_test.go * Update main.css * Update upload.jet.html * Update edit.jet.html * Update template_test.go * Update upload.jet.html * Update main.css * new design for user edit * Fix CRSF token * Update upload_multiple.jet.html * Update upload.jet.html * Update profile.jet.html * Update base.jet.html * Update edit.jet.html * Update forms.go * Update forms_test.go * Update forms_test.go * Update forms.go * Update forms_test.go * Update main.css * Fix 4+ torrent flags display on IE * Fix userprofile buttons on IE, remove fancy css * Fix torrent link being hidden on IE * Update listing.jet.html * Update main.css * Update listing.jet.html * Delete torrent_item_upload.jet.html * Update torrent_item.jet.html * Update main.css * Update classic.css * Update listing.jet.html * Update classic.css * Update profile.jet.html * Update upload.jet.html * Update classic.css * Update classic.css * Update main.css * Update user.go * Update upload.jet.html * Update upload.jet.html * Update edit.jet.html * Update template_test.go * Update forms.go * Update forms_test.go * Update main.css * Update classic.css * checkboxes next to language div * wooo responsive checkboxes * remove empty space * need an !important here * Fix flags being unaligned on IE * Fix some inputs being too big on classic.css, remove fancy shit * Update classic.css * fix travis * Update main.css * Update upload.jet.html * Update edit.jet.html
2017-09-30 15:10:47 +02:00
AnidexAPIToken string `validate:"-" form:"anidex_api" json:"anidex_api"`
NyaasiAPIToken string `validate:"-" form:"nyaasi_api" json:"nyaasi_api"`
TokyoTAPIToken string `validate:"-" form:"tokyot_api" json:"tokyot_api"`
}
2017-05-21 18:13:28 +02:00
// UserSettingsForm is used when updating a user.
type UserSettingsForm struct {
2017-07-03 01:47:31 +02:00
NewTorrent bool `validate:"-" json:"new_torrent" form:"new_torrent"`
NewTorrentEmail bool `validate:"-" json:"new_torrent_email" form:"new_torrent_email"`
NewComment bool `validate:"-" json:"new_comment" form:"new_comment"`
NewCommentEmail bool `validate:"-" json:"new_comment_email" form:"new_comment_email"`
NewResponses bool `validate:"-" json:"new_responses" form:"new_responses"`
NewResponsesEmail bool `validate:"-" json:"new_responses_email" form:"new_responses_email"`
NewFollower bool `validate:"-" json:"new_follower" form:"new_follower"`
NewFollowerEmail bool `validate:"-" json:"new_follower_email" form:"new_follower_email"`
Followed bool `validate:"-" json:"followed" form:"followed"`
FollowedEmail bool `validate:"-" json:"followed_email" form:"followed_email"`
2017-05-21 18:13:28 +02:00
}
// PasswordForm is used when updating a user password.
type PasswordForm struct {
2017-07-03 01:47:31 +02:00
CurrentPassword string `validate:"required" form:"current_password"`
Password string `validate:"required" form:"password"`
}
// SendPasswordResetForm is used when sending a password reset token.
type SendPasswordResetForm struct {
2017-07-03 01:47:31 +02:00
Email string `validate:"required" form:"email"`
}
// PasswordResetForm is used when reseting a password.
type PasswordResetForm struct {
2017-07-03 01:47:31 +02:00
PasswordResetToken string `validate:"required" form:"token"`
Password string `validate:"required" form:"password"`
}