summaryrefslogtreecommitdiffstats
path: root/java/com/google/gerrit/server/restapi/account/CreateEmail.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/google/gerrit/server/restapi/account/CreateEmail.java')
-rw-r--r--java/com/google/gerrit/server/restapi/account/CreateEmail.java152
1 files changed, 152 insertions, 0 deletions
diff --git a/java/com/google/gerrit/server/restapi/account/CreateEmail.java b/java/com/google/gerrit/server/restapi/account/CreateEmail.java
new file mode 100644
index 0000000000..e4e8525656
--- /dev/null
+++ b/java/com/google/gerrit/server/restapi/account/CreateEmail.java
@@ -0,0 +1,152 @@
+// Copyright (C) 2013 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.gerrit.server.restapi.account;
+
+import static com.google.gerrit.extensions.client.AuthType.DEVELOPMENT_BECOME_ANY_ACCOUNT;
+
+import com.google.common.flogger.FluentLogger;
+import com.google.gerrit.common.errors.EmailException;
+import com.google.gerrit.extensions.api.accounts.EmailInput;
+import com.google.gerrit.extensions.client.AccountFieldName;
+import com.google.gerrit.extensions.common.EmailInfo;
+import com.google.gerrit.extensions.restapi.BadRequestException;
+import com.google.gerrit.extensions.restapi.IdString;
+import com.google.gerrit.extensions.restapi.MethodNotAllowedException;
+import com.google.gerrit.extensions.restapi.ResourceConflictException;
+import com.google.gerrit.extensions.restapi.Response;
+import com.google.gerrit.extensions.restapi.RestApiException;
+import com.google.gerrit.extensions.restapi.RestCollectionCreateView;
+import com.google.gerrit.server.CurrentUser;
+import com.google.gerrit.server.IdentifiedUser;
+import com.google.gerrit.server.account.AccountException;
+import com.google.gerrit.server.account.AccountManager;
+import com.google.gerrit.server.account.AccountResource;
+import com.google.gerrit.server.account.AuthRequest;
+import com.google.gerrit.server.account.Realm;
+import com.google.gerrit.server.config.AuthConfig;
+import com.google.gerrit.server.mail.send.OutgoingEmailValidator;
+import com.google.gerrit.server.mail.send.RegisterNewEmailSender;
+import com.google.gerrit.server.permissions.GlobalPermission;
+import com.google.gerrit.server.permissions.PermissionBackend;
+import com.google.gerrit.server.permissions.PermissionBackendException;
+import com.google.gwtorm.server.OrmException;
+import com.google.inject.Inject;
+import com.google.inject.Provider;
+import com.google.inject.Singleton;
+import java.io.IOException;
+import org.eclipse.jgit.errors.ConfigInvalidException;
+
+@Singleton
+public class CreateEmail
+ implements RestCollectionCreateView<AccountResource, AccountResource.Email, EmailInput> {
+ private static final FluentLogger logger = FluentLogger.forEnclosingClass();
+
+ private final Provider<CurrentUser> self;
+ private final Realm realm;
+ private final PermissionBackend permissionBackend;
+ private final AccountManager accountManager;
+ private final RegisterNewEmailSender.Factory registerNewEmailFactory;
+ private final PutPreferred putPreferred;
+ private final OutgoingEmailValidator validator;
+ private final boolean isDevMode;
+
+ @Inject
+ CreateEmail(
+ Provider<CurrentUser> self,
+ Realm realm,
+ PermissionBackend permissionBackend,
+ AuthConfig authConfig,
+ AccountManager accountManager,
+ RegisterNewEmailSender.Factory registerNewEmailFactory,
+ PutPreferred putPreferred,
+ OutgoingEmailValidator validator) {
+ this.self = self;
+ this.realm = realm;
+ this.permissionBackend = permissionBackend;
+ this.accountManager = accountManager;
+ this.registerNewEmailFactory = registerNewEmailFactory;
+ this.putPreferred = putPreferred;
+ this.validator = validator;
+ this.isDevMode = authConfig.getAuthType() == DEVELOPMENT_BECOME_ANY_ACCOUNT;
+ }
+
+ @Override
+ public Response<EmailInfo> apply(AccountResource rsrc, IdString id, EmailInput input)
+ throws RestApiException, OrmException, EmailException, MethodNotAllowedException, IOException,
+ ConfigInvalidException, PermissionBackendException {
+ if (input == null) {
+ input = new EmailInput();
+ }
+
+ if (!self.get().hasSameAccountId(rsrc.getUser()) || input.noConfirmation) {
+ permissionBackend.currentUser().check(GlobalPermission.MODIFY_ACCOUNT);
+ }
+
+ if (!realm.allowsEdit(AccountFieldName.REGISTER_NEW_EMAIL)) {
+ throw new MethodNotAllowedException("realm does not allow adding emails");
+ }
+
+ return apply(rsrc.getUser(), id, input);
+ }
+
+ /** To be used from plugins that want to create emails without permission checks. */
+ public Response<EmailInfo> apply(IdentifiedUser user, IdString id, EmailInput input)
+ throws RestApiException, OrmException, EmailException, MethodNotAllowedException, IOException,
+ ConfigInvalidException, PermissionBackendException {
+ String email = id.get().trim();
+
+ if (input == null) {
+ input = new EmailInput();
+ }
+
+ if (input.email != null && !email.equals(input.email)) {
+ throw new BadRequestException("email address must match URL");
+ }
+
+ if (!validator.isValid(email)) {
+ throw new BadRequestException("invalid email address");
+ }
+
+ EmailInfo info = new EmailInfo();
+ info.email = email;
+ if (input.noConfirmation || isDevMode) {
+ if (isDevMode) {
+ logger.atWarning().log("skipping email validation in developer mode");
+ }
+ try {
+ accountManager.link(user.getAccountId(), AuthRequest.forEmail(email));
+ } catch (AccountException e) {
+ throw new ResourceConflictException(e.getMessage());
+ }
+ if (input.preferred) {
+ putPreferred.apply(new AccountResource.Email(user, email), null);
+ info.preferred = true;
+ }
+ } else {
+ try {
+ RegisterNewEmailSender sender = registerNewEmailFactory.create(email);
+ if (!sender.isAllowed()) {
+ throw new MethodNotAllowedException("Not allowed to add email address " + email);
+ }
+ sender.send();
+ info.pendingConfirmation = true;
+ } catch (EmailException | RuntimeException e) {
+ logger.atSevere().withCause(e).log("Cannot send email verification message to %s", email);
+ throw e;
+ }
+ }
+ return Response.created(info);
+ }
+}