All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gerrit.server.account.AccountProperties Maven / Gradle / Ivy

There is a newer version: 3.10.0-rc4
Show newest version
// Copyright (C) 2018 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.account;

import com.google.common.base.Strings;
import com.google.gerrit.common.Nullable;
import com.google.gerrit.reviewdb.client.Account;
import java.sql.Timestamp;
import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.lib.ObjectId;

/**
 * Parses/writes account properties from/to a {@link Config} file.
 *
 * 

This is a low-level API. Read/write of account properties in a user branch should be done * through {@link AccountsUpdate} or {@link AccountConfig}. * *

The config file has one 'account' section with the properties of the account: * *

 *   [account]
 *     active = false
 *     fullName = John Doe
 *     preferredEmail = [email protected]
 *     status = Overloaded with reviews
 * 
* *

All keys are optional. * *

Not setting a key and setting a key to an empty string are treated the same way and result in * a {@code null} value. * *

If no value for 'active' is specified, by default the account is considered as active. * *

The account is lazily parsed. */ public class AccountProperties { public static final String ACCOUNT_CONFIG = "account.config"; public static final String ACCOUNT = "account"; public static final String KEY_ACTIVE = "active"; public static final String KEY_FULL_NAME = "fullName"; public static final String KEY_PREFERRED_EMAIL = "preferredEmail"; public static final String KEY_STATUS = "status"; private final Account.Id accountId; private final Timestamp registeredOn; private final Config accountConfig; private @Nullable ObjectId metaId; private Account account; AccountProperties( Account.Id accountId, Timestamp registeredOn, Config accountConfig, @Nullable ObjectId metaId) { this.accountId = accountId; this.registeredOn = registeredOn; this.accountConfig = accountConfig; this.metaId = metaId; } Account getAccount() { if (account == null) { parse(); } return account; } public Timestamp getRegisteredOn() { return registeredOn; } void setMetaId(@Nullable ObjectId metaId) { this.metaId = metaId; this.account = null; } private void parse() { account = new Account(accountId, registeredOn); account.setActive(accountConfig.getBoolean(ACCOUNT, null, KEY_ACTIVE, true)); account.setFullName(get(accountConfig, KEY_FULL_NAME)); String preferredEmail = get(accountConfig, KEY_PREFERRED_EMAIL); account.setPreferredEmail(preferredEmail); account.setStatus(get(accountConfig, KEY_STATUS)); account.setMetaId(metaId != null ? metaId.name() : null); } Config save(InternalAccountUpdate accountUpdate) { writeToAccountConfig(accountUpdate, accountConfig); return accountConfig; } public static void writeToAccountConfig(InternalAccountUpdate accountUpdate, Config cfg) { accountUpdate.getActive().ifPresent(active -> setActive(cfg, active)); accountUpdate.getFullName().ifPresent(fullName -> set(cfg, KEY_FULL_NAME, fullName)); accountUpdate .getPreferredEmail() .ifPresent(preferredEmail -> set(cfg, KEY_PREFERRED_EMAIL, preferredEmail)); accountUpdate.getStatus().ifPresent(status -> set(cfg, KEY_STATUS, status)); } /** * Gets the given key from the given config. * *

Empty values are returned as {@code null} * * @param cfg the config * @param key the key * @return the value, {@code null} if key was not set or key was set to empty string */ private static String get(Config cfg, String key) { return Strings.emptyToNull(cfg.getString(ACCOUNT, null, key)); } /** * Sets/Unsets {@code account.active} in the given config. * *

{@code account.active} is set to {@code false} if the account is inactive. * *

If the account is active {@code account.active} is unset since {@code true} is the default * if this field is missing. * * @param cfg the config * @param value whether the account is active */ private static void setActive(Config cfg, boolean value) { if (!value) { cfg.setBoolean(ACCOUNT, null, KEY_ACTIVE, false); } else { cfg.unset(ACCOUNT, null, KEY_ACTIVE); } } /** * Sets/Unsets the given key in the given config. * *

The key unset if the value is {@code null}. * * @param cfg the config * @param key the key * @param value the value */ private static void set(Config cfg, String key, String value) { if (!Strings.isNullOrEmpty(value)) { cfg.setString(ACCOUNT, null, key, value); } else { cfg.unset(ACCOUNT, null, key); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy