summaryrefslogtreecommitdiffstats
path: root/gerrit-gwtui-common/src/main/java/com/google/gerrit/client/info/AccountInfo.java
blob: dc372855eac613e4296008f3c3b6707d3450c85e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// 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.client.info;

import com.google.gerrit.reviewdb.client.Account;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.JsArray;
import com.google.gwt.core.client.JsArrayString;
import com.google.gwtjsonrpc.client.impl.ser.JavaSqlTimestamp_JsonSerializer;
import java.sql.Timestamp;

public class AccountInfo extends JavaScriptObject {
  public final Account.Id getId() {
    return new Account.Id(_accountId());
  }

  public final native int _accountId() /*-{ return this._account_id || 0; }-*/;

  public final native String name() /*-{ return this.name; }-*/;

  public final native String email() /*-{ return this.email; }-*/;

  public final native JsArrayString secondaryEmails() /*-{ return this.secondary_emails; }-*/;

  public final native String username() /*-{ return this.username; }-*/;

  public final Timestamp registeredOn() {
    Timestamp ts = _getRegisteredOn();
    if (ts == null) {
      ts = JavaSqlTimestamp_JsonSerializer.parseTimestamp(registeredOnRaw());
      _setRegisteredOn(ts);
    }
    return ts;
  }

  private native String registeredOnRaw() /*-{ return this.registered_on; }-*/;

  private native Timestamp _getRegisteredOn() /*-{ return this._cts; }-*/;

  private native void _setRegisteredOn(Timestamp ts) /*-{ this._cts = ts; }-*/;

  /**
   * @return true if the server supplied avatar information about this account. The information may
   *     be an empty list, indicating no avatars are available, such as when no plugin is installed.
   *     This method returns false if the server did not check on avatars for the account.
   */
  public final native boolean hasAvatarInfo() /*-{ return this.hasOwnProperty('avatars') }-*/;

  public final AvatarInfo avatar(int sz) {
    JsArray<AvatarInfo> a = avatars();
    for (int i = 0; a != null && i < a.length(); i++) {
      AvatarInfo r = a.get(i);
      if (r.height() == sz) {
        return r;
      }
    }
    return null;
  }

  private native JsArray<AvatarInfo> avatars() /*-{ return this.avatars }-*/;

  public final native void name(String n) /*-{ this.name = n }-*/;

  public final native void email(String e) /*-{ this.email = e }-*/;

  public final native void username(String n) /*-{ this.username = n }-*/;

  public static native AccountInfo create(int id, String name, String email, String username) /*-{
    return {'_account_id': id, 'name': name, 'email': email,
        'username': username};
  }-*/;

  protected AccountInfo() {}

  public static class AvatarInfo extends JavaScriptObject {
    public static final int DEFAULT_SIZE = 26;

    public final native String url() /*-{ return this.url }-*/;

    public final native int height() /*-{ return this.height || 0 }-*/;

    public final native int width() /*-{ return this.width || 0 }-*/;

    protected AvatarInfo() {}
  }
}