public class DefaultSignupManager extends Object implements SignupManager
Modifier and Type | Field and Description |
---|---|
static String |
NOTIFY_ON_SIGNUP_TOKEN |
static String |
PREVIOUS_SIGNUP_TOKEN |
static String |
SIGNUP_TOKEN |
Constructor and Description |
---|
DefaultSignupManager(com.atlassian.bandana.BandanaManager bandanaManager,
com.atlassian.security.random.SecureTokenGenerator secureTokenGenerator,
UserAccessor userAccessor,
UserVerificationTokenManager userVerificationTokenManager,
com.atlassian.crowd.embedded.api.CrowdService crowdService,
SettingsManager settingsManager,
com.atlassian.renderer.WikiStyleRenderer wikiStyleRenderer,
EmailService notificationsService,
NotificationsSender notificationsSender,
com.atlassian.event.api.EventPublisher eventPublisher,
UserChecker userChecker,
PersonalInformationManager personalInformationManager,
com.atlassian.core.task.MultiQueueTaskManager taskManager,
I18NBeanFactory i18NBeanFactory,
DataSourceFactory dataSourceFactory) |
Modifier and Type | Method and Description |
---|---|
boolean |
canSignUpWith(String token)
Return true if the given token is valid for a user to self-sign-up.
|
String |
createUserPendingConfirmation(com.atlassian.user.User user,
String password)
Creates a new user and marks them disabled pending their email confirmation?
|
boolean |
doesUserHaveOutdatedSignupToken(com.atlassian.user.User user) |
void |
enableConfirmedUser(com.atlassian.user.User user)
Enable previously disabled user who signed up and confirmed their email.
|
String |
getRelativeSignupURL() |
String |
getRestrictedDomains()
Returns comma separated list of domains.
|
String |
getSignUpToken()
Gets the current sign-up token, or creates a new one and returns it.
|
String |
getSignupURL() |
boolean |
isDomainRestrictedSignupEnabled() |
boolean |
isEmailOnRestrictedDomain(String email)
Checks if the given email address is on one of the configured restricted domains.
|
boolean |
isEmailSentOnInviteSignUp() |
boolean |
isPendingConfirmation(com.atlassian.user.User user)
Is given user tried to sign up but hasn't confirmed their email yet?
|
boolean |
isPublicSignupPermitted()
Returns true if users can sign themselves for this instance.
|
boolean |
isTokenForUserValid(com.atlassian.user.User user,
String token) |
String |
refreshAndGetToken()
Creates a new sign-up token and returns it.
|
String |
restorePreviousToken()
Restore the previous private-signup token and returns it.
|
void |
sendConfirmationEmail(String token,
com.atlassian.user.User user)
Sends a confirmation email to the given new user.
|
NotificationSendResult |
sendInvites(SendUserInviteEvent event)
Send invitation emails with a message to a list of email addresses.
|
void |
sendWelcomeEmail(ConfluenceUser user)
Sends a welcome email to the given new user.
|
void |
setDomainRestrictedSignupMode(String allowedDomains)
Set the domains that user's email address should belong to to be able to sign up.
|
void |
setEmailSentOnInviteSignUp(boolean notify) |
void |
setPrivateSignupMode() |
void |
setPublicSignupMode() |
public static final String SIGNUP_TOKEN
public static final String PREVIOUS_SIGNUP_TOKEN
public static final String NOTIFY_ON_SIGNUP_TOKEN
public DefaultSignupManager(com.atlassian.bandana.BandanaManager bandanaManager, com.atlassian.security.random.SecureTokenGenerator secureTokenGenerator, UserAccessor userAccessor, UserVerificationTokenManager userVerificationTokenManager, com.atlassian.crowd.embedded.api.CrowdService crowdService, SettingsManager settingsManager, com.atlassian.renderer.WikiStyleRenderer wikiStyleRenderer, EmailService notificationsService, NotificationsSender notificationsSender, com.atlassian.event.api.EventPublisher eventPublisher, UserChecker userChecker, PersonalInformationManager personalInformationManager, com.atlassian.core.task.MultiQueueTaskManager taskManager, I18NBeanFactory i18NBeanFactory, DataSourceFactory dataSourceFactory)
public String refreshAndGetToken()
SignupManager
refreshAndGetToken
in interface SignupManager
public boolean canSignUpWith(String token)
SignupManager
canSignUpWith
in interface SignupManager
token
- a sign-up token from a URL given to an invited userpublic boolean isEmailSentOnInviteSignUp()
isEmailSentOnInviteSignUp
in interface SignupManager
public boolean isPublicSignupPermitted()
SignupManager
isPublicSignupPermitted
in interface SignupManager
public String getRelativeSignupURL()
getRelativeSignupURL
in interface SignupManager
public String getSignupURL()
getSignupURL
in interface SignupManager
public void setEmailSentOnInviteSignUp(boolean notify)
setEmailSentOnInviteSignUp
in interface SignupManager
notify
- true if notification emails should be sent to admins when a user signs themselves up, false if notpublic String restorePreviousToken()
SignupManager
restorePreviousToken
in interface SignupManager
public String getSignUpToken()
SignupManager
getSignUpToken
in interface SignupManager
public NotificationSendResult sendInvites(SendUserInviteEvent event)
SignupManager
sendInvites
in interface SignupManager
public void sendConfirmationEmail(String token, com.atlassian.user.User user)
SignupManager
sendConfirmationEmail
in interface SignupManager
token
- the token that the user must validate againstuser
- the new userpublic void sendWelcomeEmail(ConfluenceUser user)
SignupManager
sendWelcomeEmail
in interface SignupManager
user
- the new userpublic void setPublicSignupMode()
setPublicSignupMode
in interface SignupManager
public void setPrivateSignupMode()
setPrivateSignupMode
in interface SignupManager
public void setDomainRestrictedSignupMode(String allowedDomains)
SignupManager
setDomainRestrictedSignupMode
in interface SignupManager
allowedDomains
- comma separated list of domainspublic String getRestrictedDomains()
SignupManager
getRestrictedDomains
in interface SignupManager
public boolean isEmailOnRestrictedDomain(String email)
SignupManager
isEmailOnRestrictedDomain
in interface SignupManager
email
- the email address. Can be null.public boolean isPendingConfirmation(com.atlassian.user.User user)
SignupManager
isPendingConfirmation
in interface SignupManager
public boolean isTokenForUserValid(com.atlassian.user.User user, String token)
isTokenForUserValid
in interface SignupManager
public boolean doesUserHaveOutdatedSignupToken(com.atlassian.user.User user)
doesUserHaveOutdatedSignupToken
in interface SignupManager
public void enableConfirmedUser(com.atlassian.user.User user) throws com.atlassian.crowd.exception.runtime.UserNotFoundException, com.atlassian.crowd.exception.runtime.OperationFailedException, com.atlassian.crowd.exception.InvalidUserException, com.atlassian.crowd.exception.OperationNotPermittedException
SignupManager
enableConfirmedUser
in interface SignupManager
com.atlassian.crowd.exception.runtime.UserNotFoundException
com.atlassian.crowd.exception.runtime.OperationFailedException
com.atlassian.crowd.exception.InvalidUserException
com.atlassian.crowd.exception.OperationNotPermittedException
public String createUserPendingConfirmation(com.atlassian.user.User user, String password) throws com.atlassian.crowd.exception.runtime.OperationFailedException, com.atlassian.crowd.exception.InvalidUserException, com.atlassian.crowd.exception.InvalidCredentialException, com.atlassian.crowd.exception.OperationNotPermittedException
SignupManager
createUserPendingConfirmation
in interface SignupManager
user
- the new userpassword
- the password for the new usercom.atlassian.crowd.exception.runtime.OperationFailedException
com.atlassian.crowd.exception.InvalidUserException
com.atlassian.crowd.exception.InvalidCredentialException
com.atlassian.crowd.exception.OperationNotPermittedException
public boolean isDomainRestrictedSignupEnabled()
isDomainRestrictedSignupEnabled
in interface SignupManager
Copyright © 2003–2021 Atlassian. All rights reserved.