allow the either username or email is empty which returns from oauth 2.0 provider, but require both to be present when automatically registering a new user
This commit is contained in:
@@ -208,9 +208,20 @@ func (a *OAuth2AuthenticationApi) CallbackHandler(c *core.WebContext) (string, *
|
|||||||
return a.redirectToFailedCallbackPage(c, errs.ErrCannotRetrieveUserInfo)
|
return a.redirectToFailedCallbackPage(c, errs.ErrCannotRetrieveUserInfo)
|
||||||
}
|
}
|
||||||
|
|
||||||
if oauth2UserInfo.UserName == "" || oauth2UserInfo.Email == "" {
|
log.Infof(c, "[oauth2_authentications.CallbackHandler] oauth 2.0 user info, userName: %s, email: %s", oauth2UserInfo.UserName, oauth2UserInfo.Email)
|
||||||
log.Errorf(c, "[oauth2_authentications.CallbackHandler] invalid oauth 2.0 user info, userName: %s, email: %s", oauth2UserInfo.UserName, oauth2UserInfo.Email)
|
|
||||||
return a.redirectToFailedCallbackPage(c, errs.ErrCannotRetrieveUserInfo)
|
if oauth2UserInfo.UserName == "" && oauth2UserInfo.Email == "" {
|
||||||
|
return a.redirectToFailedCallbackPage(c, errs.ErrOAuth2UserNameAndEmailEmpty)
|
||||||
|
}
|
||||||
|
|
||||||
|
if a.CurrentConfig().OAuth2UserIdentifier == settings.OAuth2UserIdentifierEmail && oauth2UserInfo.Email == "" {
|
||||||
|
log.Errorf(c, "[oauth2_authentications.CallbackHandler] invalid oauth 2.0 user info, email is empty")
|
||||||
|
return a.redirectToFailedCallbackPage(c, errs.ErrOAuth2EmailEmpty)
|
||||||
|
}
|
||||||
|
|
||||||
|
if a.CurrentConfig().OAuth2UserIdentifier == settings.OAuth2UserIdentifierUsername && oauth2UserInfo.UserName == "" {
|
||||||
|
log.Errorf(c, "[oauth2_authentications.CallbackHandler] invalid oauth 2.0 user info, userName is empty")
|
||||||
|
return a.redirectToFailedCallbackPage(c, errs.ErrOAuth2UserNameEmpty)
|
||||||
}
|
}
|
||||||
|
|
||||||
userExternalAuthType := oauth2.GetExternalUserAuthType()
|
userExternalAuthType := oauth2.GetExternalUserAuthType()
|
||||||
@@ -221,7 +232,7 @@ func (a *OAuth2AuthenticationApi) CallbackHandler(c *core.WebContext) (string, *
|
|||||||
} else if a.CurrentConfig().OAuth2UserIdentifier == settings.OAuth2UserIdentifierUsername {
|
} else if a.CurrentConfig().OAuth2UserIdentifier == settings.OAuth2UserIdentifierUsername {
|
||||||
userExternalAuth, err = a.userExternalAuths.GetUserExternalAuthByExternalUserName(c, oauth2UserInfo.UserName, userExternalAuthType)
|
userExternalAuth, err = a.userExternalAuths.GetUserExternalAuthByExternalUserName(c, oauth2UserInfo.UserName, userExternalAuthType)
|
||||||
} else {
|
} else {
|
||||||
userExternalAuth, err = a.userExternalAuths.GetUserExternalAuthByExternalEmail(c, oauth2UserInfo.Email, userExternalAuthType)
|
return a.redirectToFailedCallbackPage(c, errs.ErrNotSupported)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil && !errors.Is(err, errs.ErrUserExternalAuthNotFound) {
|
if err != nil && !errors.Is(err, errs.ErrUserExternalAuthNotFound) {
|
||||||
@@ -257,7 +268,7 @@ func (a *OAuth2AuthenticationApi) CallbackHandler(c *core.WebContext) (string, *
|
|||||||
} else if a.CurrentConfig().OAuth2UserIdentifier == settings.OAuth2UserIdentifierUsername {
|
} else if a.CurrentConfig().OAuth2UserIdentifier == settings.OAuth2UserIdentifierUsername {
|
||||||
user, err = a.users.GetUserByUsername(c, oauth2UserInfo.UserName)
|
user, err = a.users.GetUserByUsername(c, oauth2UserInfo.UserName)
|
||||||
} else {
|
} else {
|
||||||
user, err = a.users.GetUserByEmail(c, oauth2UserInfo.Email)
|
err = errs.ErrNotSupported
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil && !errors.Is(err, errs.ErrUserNotFound) {
|
if err != nil && !errors.Is(err, errs.ErrUserNotFound) {
|
||||||
@@ -267,6 +278,14 @@ func (a *OAuth2AuthenticationApi) CallbackHandler(c *core.WebContext) (string, *
|
|||||||
}
|
}
|
||||||
|
|
||||||
if user == nil && a.CurrentConfig().EnableUserRegister && a.CurrentConfig().OAuth2AutoRegister {
|
if user == nil && a.CurrentConfig().EnableUserRegister && a.CurrentConfig().OAuth2AutoRegister {
|
||||||
|
if oauth2UserInfo.UserName == "" {
|
||||||
|
return a.redirectToFailedCallbackPage(c, errs.ErrOAuth2UserNameEmptyCannotRegister)
|
||||||
|
}
|
||||||
|
|
||||||
|
if oauth2UserInfo.Email == "" {
|
||||||
|
return a.redirectToFailedCallbackPage(c, errs.ErrOAuth2EmailEmptyCannotRegister)
|
||||||
|
}
|
||||||
|
|
||||||
userName := strings.TrimSpace(oauth2UserInfo.UserName)
|
userName := strings.TrimSpace(oauth2UserInfo.UserName)
|
||||||
email := strings.TrimSpace(oauth2UserInfo.Email)
|
email := strings.TrimSpace(oauth2UserInfo.Email)
|
||||||
nickName := strings.TrimSpace(oauth2UserInfo.NickName)
|
nickName := strings.TrimSpace(oauth2UserInfo.NickName)
|
||||||
|
|||||||
@@ -17,4 +17,9 @@ var (
|
|||||||
ErrInvalidOAuth2Token = NewNormalError(NormalSubcategoryOAuth2, 8, http.StatusBadRequest, "invalid oauth2 token")
|
ErrInvalidOAuth2Token = NewNormalError(NormalSubcategoryOAuth2, 8, http.StatusBadRequest, "invalid oauth2 token")
|
||||||
ErrCannotRetrieveUserInfo = NewNormalError(NormalSubcategoryOAuth2, 9, http.StatusBadRequest, "cannot retrieve user info from oauth2 provider")
|
ErrCannotRetrieveUserInfo = NewNormalError(NormalSubcategoryOAuth2, 9, http.StatusBadRequest, "cannot retrieve user info from oauth2 provider")
|
||||||
ErrOAuth2UserAlreadyBoundToAnotherUser = NewNormalError(NormalSubcategoryOAuth2, 10, http.StatusBadRequest, "oauth2 user already bound to another user")
|
ErrOAuth2UserAlreadyBoundToAnotherUser = NewNormalError(NormalSubcategoryOAuth2, 10, http.StatusBadRequest, "oauth2 user already bound to another user")
|
||||||
|
ErrOAuth2UserNameAndEmailEmpty = NewNormalError(NormalSubcategoryOAuth2, 11, http.StatusBadRequest, "user name and email from oauth2 provider are both empty")
|
||||||
|
ErrOAuth2UserNameEmpty = NewNormalError(NormalSubcategoryOAuth2, 12, http.StatusBadRequest, "user name from oauth2 provider is empty")
|
||||||
|
ErrOAuth2EmailEmpty = NewNormalError(NormalSubcategoryOAuth2, 13, http.StatusBadRequest, "email from oauth2 provider is empty")
|
||||||
|
ErrOAuth2UserNameEmptyCannotRegister = NewNormalError(NormalSubcategoryOAuth2, 14, http.StatusBadRequest, "user name from oauth2 provider is empty, cannot register new user")
|
||||||
|
ErrOAuth2EmailEmptyCannotRegister = NewNormalError(NormalSubcategoryOAuth2, 15, http.StatusBadRequest, "email from oauth2 provider is empty, cannot register new user")
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "OAuth 2.0 ಟೋಕನ್ ಅಮಾನ್ಯವಾಗಿದೆ",
|
"invalid oauth2 token": "OAuth 2.0 ಟೋಕನ್ ಅಮಾನ್ಯವಾಗಿದೆ",
|
||||||
"cannot retrieve user info from oauth2 provider": "OAuth 2.0 ಪೂರೈಕೆದಾರರಿಂದ ಬಳಕೆದಾರ ಮಾಹಿತಿಯನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ",
|
"cannot retrieve user info from oauth2 provider": "OAuth 2.0 ಪೂರೈಕೆದಾರರಿಂದ ಬಳಕೆದಾರ ಮಾಹಿತಿಯನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 ಬಳಕೆದಾರ ಈಗಾಗಲೇ ಇನ್ನೊಬ್ಬ ಬಳಕೆದಾರನಿಗೆ ಬೌಂಡ್ ಆಗಿದ್ದಾನೆ",
|
"oauth2 user already bound to another user": "OAuth 2.0 ಬಳಕೆದಾರ ಈಗಾಗಲೇ ಇನ್ನೊಬ್ಬ ಬಳಕೆದಾರನಿಗೆ ಬೌಂಡ್ ಆಗಿದ್ದಾನೆ",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Neveljaven žeton OAuth 2.0",
|
"invalid oauth2 token": "Neveljaven žeton OAuth 2.0",
|
||||||
"cannot retrieve user info from oauth2 provider": "Ni mogoče pridobiti podatkov o uporabniku od ponudnika OAuth 2.0",
|
"cannot retrieve user info from oauth2 provider": "Ni mogoče pridobiti podatkov o uporabniku od ponudnika OAuth 2.0",
|
||||||
"oauth2 user already bound to another user": "Uporabnik OAuth 2.0 je že povezan z drugim uporabnikom",
|
"oauth2 user already bound to another user": "Uporabnik OAuth 2.0 je že povezan z drugim uporabnikom",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Geçersiz OAuth 2.0 jetonu",
|
"invalid oauth2 token": "Geçersiz OAuth 2.0 jetonu",
|
||||||
"cannot retrieve user info from oauth2 provider": "OAuth 2.0 sağlayıcısından kullanıcı bilgisi alınamıyor",
|
"cannot retrieve user info from oauth2 provider": "OAuth 2.0 sağlayıcısından kullanıcı bilgisi alınamıyor",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 kullanıcısı zaten başka bir kullanıcıya bağlı",
|
"oauth2 user already bound to another user": "OAuth 2.0 kullanıcısı zaten başka bir kullanıcıya bağlı",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
"invalid oauth2 token": "Invalid OAuth 2.0 token",
|
||||||
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
"cannot retrieve user info from oauth2 provider": "Cannot retrieve user info from OAuth 2.0 provider",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
"oauth2 user already bound to another user": "OAuth 2.0 user is already bound to another user",
|
||||||
|
"user name and email from oauth2 provider are both empty": "User name and email from OAuth 2.0 provider are both empty",
|
||||||
|
"user name from oauth2 provider is empty": "User name from OAuth 2.0 provider is empty",
|
||||||
|
"email from oauth2 provider is empty": "Email from OAuth 2.0 provider is empty",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "User name from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "Email from OAuth 2.0 provider is empty, cannot register new user",
|
||||||
"explorer id is invalid": "Explorer ID is invalid",
|
"explorer id is invalid": "Explorer ID is invalid",
|
||||||
"explorer not found": "Explorer is not found",
|
"explorer not found": "Explorer is not found",
|
||||||
"explorer data is invalid": "Explorer data is invalid",
|
"explorer data is invalid": "Explorer data is invalid",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "无效的 OAuth 2.0 令牌",
|
"invalid oauth2 token": "无效的 OAuth 2.0 令牌",
|
||||||
"cannot retrieve user info from oauth2 provider": "无法从 OAuth 2.0 提供者获取用户信息",
|
"cannot retrieve user info from oauth2 provider": "无法从 OAuth 2.0 提供者获取用户信息",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 用户已经绑定到另一个用户",
|
"oauth2 user already bound to another user": "OAuth 2.0 用户已经绑定到另一个用户",
|
||||||
|
"user name and email from oauth2 provider are both empty": "来自 OAuth 2.0 提供者的用户名和电子邮箱均为空",
|
||||||
|
"user name from oauth2 provider is empty": "来自 OAuth 2.0 提供者的用户名为空",
|
||||||
|
"email from oauth2 provider is empty": "来自 OAuth 2.0 提供者的电子邮箱为空",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "来自 OAuth 2.0 提供者的用户名为空,无法注册新用户",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "来自 OAuth 2.0 提供者的电子邮箱为空,无法注册新用户",
|
||||||
"explorer id is invalid": "探索ID无效",
|
"explorer id is invalid": "探索ID无效",
|
||||||
"explorer not found": "探索不存在",
|
"explorer not found": "探索不存在",
|
||||||
"explorer data is invalid": "探索数据无效",
|
"explorer data is invalid": "探索数据无效",
|
||||||
|
|||||||
@@ -1270,6 +1270,11 @@
|
|||||||
"invalid oauth2 token": "無效的 OAuth 2.0 令牌",
|
"invalid oauth2 token": "無效的 OAuth 2.0 令牌",
|
||||||
"cannot retrieve user info from oauth2 provider": "無法從 OAuth 2.0 提供者獲取使用者資訊",
|
"cannot retrieve user info from oauth2 provider": "無法從 OAuth 2.0 提供者獲取使用者資訊",
|
||||||
"oauth2 user already bound to another user": "OAuth 2.0 使用者已綁定到另一個使用者",
|
"oauth2 user already bound to another user": "OAuth 2.0 使用者已綁定到另一個使用者",
|
||||||
|
"user name and email from oauth2 provider are both empty": "來自 OAuth 2.0 提供者的使用者名稱和電子郵件均為空",
|
||||||
|
"user name from oauth2 provider is empty": "來自 OAuth 2.0 提供者的使用者名稱為空",
|
||||||
|
"email from oauth2 provider is empty": "來自 OAuth 2.0 提供者的電子郵件為空",
|
||||||
|
"user name from oauth2 provider is empty, cannot register new user": "來自 OAuth 2.0 提供者的使用者名稱為空,無法註冊新使用者",
|
||||||
|
"email from oauth2 provider is empty, cannot register new user": "來自 OAuth 2.0 提供者的電子郵件為空,無法註冊新使用者",
|
||||||
"explorer id is invalid": "探索ID無效",
|
"explorer id is invalid": "探索ID無效",
|
||||||
"explorer not found": "探索不存在",
|
"explorer not found": "探索不存在",
|
||||||
"explorer data is invalid": "探索資料無效",
|
"explorer data is invalid": "探索資料無效",
|
||||||
|
|||||||
Reference in New Issue
Block a user