errors: handling, locale
This commit is contained in:
@@ -61,7 +61,9 @@ export default {
|
|||||||
'Verdammt, Fehler auf unserer Seite, probieren Sie es nochmal, danach rufen Sie jemanden vom Verein an.',
|
'Verdammt, Fehler auf unserer Seite, probieren Sie es nochmal, danach rufen Sie jemanden vom Verein an.',
|
||||||
not_possible: 'Vorgang nicht möglich.',
|
not_possible: 'Vorgang nicht möglich.',
|
||||||
not_found: 'Konnte nicht gefunden werden.',
|
not_found: 'Konnte nicht gefunden werden.',
|
||||||
in_use: 'Ist in Benutzung'
|
in_use: 'Ist in Benutzung',
|
||||||
|
undelivered_verification_mail:
|
||||||
|
'Registrierung erfolgreicht, leider konnte die Verifizierungs-E-Mail nicht versendet werden. Bitte wenden Sie sich an den Verein um Ihre Emailadresse zu bestätigen und Ihren Account zu aktivieren.'
|
||||||
},
|
},
|
||||||
validation: {
|
validation: {
|
||||||
invalid_user_id: 'Nutzer ID ungültig',
|
invalid_user_id: 'Nutzer ID ungültig',
|
||||||
|
|||||||
@@ -92,3 +92,17 @@ func HandleVerifyUserError(c *gin.Context, err error) {
|
|||||||
RespondWithError(c, err, "Couldn't verify user", http.StatusInternalServerError, errors.Responses.Fields.General, errors.Responses.Keys.InternalServerError)
|
RespondWithError(c, err, "Couldn't verify user", http.StatusInternalServerError, errors.Responses.Fields.General, errors.Responses.Keys.InternalServerError)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func HandleDeleteUserError(c *gin.Context, err error) {
|
||||||
|
if err.Error() == "record not found" {
|
||||||
|
RespondWithError(c, err, "Couldn't find user", http.StatusNotFound, errors.Responses.Fields.User, errors.Responses.Keys.NotFound)
|
||||||
|
}
|
||||||
|
switch err {
|
||||||
|
case errors.ErrUserNotFound:
|
||||||
|
RespondWithError(c, err, "User not found", http.StatusNotFound, errors.Responses.Fields.User, errors.Responses.Keys.NotFound)
|
||||||
|
case errors.ErrNoData:
|
||||||
|
RespondWithError(c, err, "No data transmitted", http.StatusNotFound, errors.Responses.Fields.User, errors.Responses.Keys.Invalid)
|
||||||
|
default:
|
||||||
|
RespondWithError(c, err, "Couldn't delete user", http.StatusInternalServerError, errors.Responses.Fields.User, errors.Responses.Keys.InternalServerError)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -3,20 +3,21 @@ package errors
|
|||||||
import "errors"
|
import "errors"
|
||||||
|
|
||||||
type ValidationKeys struct {
|
type ValidationKeys struct {
|
||||||
Invalid string
|
Invalid string
|
||||||
InternalServerError string
|
InternalServerError string
|
||||||
InvalidJson string
|
InvalidJson string
|
||||||
Unauthorized string
|
Unauthorized string
|
||||||
InvalidSubscriptionModel string
|
InvalidSubscriptionModel string
|
||||||
UserNotFoundWrongPassword string
|
UserNotFoundWrongPassword string
|
||||||
JwtGenerationFailed string
|
JwtGenerationFailed string
|
||||||
Duplicate string
|
Duplicate string
|
||||||
InvalidUserID string
|
InvalidUserID string
|
||||||
PasswordAlreadyChanged string
|
PasswordAlreadyChanged string
|
||||||
UserDisabled string
|
UserDisabled string
|
||||||
NoAuthToken string
|
NoAuthToken string
|
||||||
NotFound string
|
NotFound string
|
||||||
InUse string
|
InUse string
|
||||||
|
UndeliveredVerificationMail string
|
||||||
}
|
}
|
||||||
|
|
||||||
type ValidationFields struct {
|
type ValidationFields struct {
|
||||||
@@ -58,18 +59,19 @@ var Responses = struct {
|
|||||||
Fields ValidationFields
|
Fields ValidationFields
|
||||||
}{
|
}{
|
||||||
Keys: ValidationKeys{
|
Keys: ValidationKeys{
|
||||||
Invalid: "server.validation.invalid",
|
Invalid: "server.validation.invalid",
|
||||||
InternalServerError: "server.error.internal_server_error",
|
InternalServerError: "server.error.internal_server_error",
|
||||||
InvalidJson: "server.error.invalid_json",
|
InvalidJson: "server.error.invalid_json",
|
||||||
Unauthorized: "server.error.unauthorized",
|
Unauthorized: "server.error.unauthorized",
|
||||||
UserNotFoundWrongPassword: "server.validation.user_not_found_or_wrong_password",
|
UserNotFoundWrongPassword: "server.validation.user_not_found_or_wrong_password",
|
||||||
JwtGenerationFailed: "server.error.jwt_generation_failed",
|
JwtGenerationFailed: "server.error.jwt_generation_failed",
|
||||||
Duplicate: "server.validation.duplicate",
|
Duplicate: "server.validation.duplicate",
|
||||||
UserDisabled: "server.validation.user_disabled",
|
UserDisabled: "server.validation.user_disabled",
|
||||||
PasswordAlreadyChanged: "server.validation.password_already_changed",
|
PasswordAlreadyChanged: "server.validation.password_already_changed",
|
||||||
NoAuthToken: "server.error.no_auth_token",
|
NoAuthToken: "server.error.no_auth_token",
|
||||||
NotFound: "server.error.not_found",
|
NotFound: "server.error.not_found",
|
||||||
InUse: "server.error.in_use",
|
InUse: "server.error.in_use",
|
||||||
|
UndeliveredVerificationMail: "server.error.undelivered_verification_mail",
|
||||||
},
|
},
|
||||||
Fields: ValidationFields{
|
Fields: ValidationFields{
|
||||||
General: "general",
|
General: "general",
|
||||||
|
|||||||
Reference in New Issue
Block a user