blob: 40379e48ea725b57175c052c93e964f3b9e52cf1 [file] [log] [blame]
<!--
@license
Copyright (C) 2017 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.
-->
<script>
(function(window) {
'use strict';
const ANONYMOUS_NAME = 'Anonymous';
window.Gerrit = window.Gerrit || {};
/** @polymerBehavior Gerrit.AnonymousNameBehavior */
Gerrit.AnonymousNameBehavior = {
/**
* enableEmail when true enables to fallback to using email if
* the account name is not avilable.
*/
getUserName(config, account, enableEmail) {
if (account && account.name) {
return account.name;
} else if (account && account.username) {
return account.username;
} else if (enableEmail && account && account.email) {
return account.email;
} else if (config && config.user &&
config.user.anonymous_coward_name !== 'Anonymous Coward') {
return config.user.anonymous_coward_name;
}
return ANONYMOUS_NAME;
},
};
})(window);
</script>