aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsConnectionImpl.java
blob: 0882c3bd85cf91fbd549389662f3daf36d5a085f (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/*
 * Jitsi, the OpenSource Java VoIP and Instant Messaging client.
 *
 * Copyright @ 2015 Atlassian Pty Ltd
 *
 * 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 net.java.sip.communicator.impl.googlecontacts;

import java.io.*;

import net.java.sip.communicator.impl.googlecontacts.OAuth2TokenStore.FailedAcquireCredentialException;
import net.java.sip.communicator.impl.googlecontacts.OAuth2TokenStore.FailedTokenRefreshException;
import net.java.sip.communicator.service.googlecontacts.*;
import net.java.sip.communicator.util.*;

import com.google.gdata.client.contacts.*;
import com.google.gdata.data.contacts.*;
import com.google.gdata.util.*;

/**
 * Google Contacts credentials to connect to the service.
 *
 * @author Sebastien Vincent
 * @author Danny van Heumen
 */
public class GoogleContactsConnectionImpl
    implements GoogleContactsConnection
{
    /**
     * Logger.
     */
    private static final Logger logger =
        Logger.getLogger(GoogleContactsConnectionImpl.class);

    /**
     * The credential store to pass around.
     */
    private final OAuth2TokenStore store = new OAuth2TokenStore();

    /**
     * Login.
     */
    private String login = null;

    /**
     * If the connection is enabled.
     */
    private boolean enabled = false;

    /**
     * The google contact prefix.
     */
    private String prefix = null;

    /**
     * Google Contacts service.
     */
    private final ContactsService googleService =
        new ContactsService("GoogleContacts service for Jitsi");

    /**
     * Constructor.
     *
     * @param login the login to connect to the service
     */
    public GoogleContactsConnectionImpl(String login)
    {
        this.login = login;
        googleService.useSsl();
    }

    /**
     * Returns the Google service.
     *
     * @return the Google service
     */
    public ContactsService getGoogleService()
    {
        return googleService;
    }

    /**
     * Get login.
     *
     * @return login to connect to the service
     */
    public String getLogin()
    {
        return login;
    }

    /**
     * Set login.
     *
     * @param login login to connect to the service
     */
    public void setLogin(String login)
    {
        this.login = login;
    }

    /**
     * Initialize connection.
     *
     * @return connection status
     */
    public synchronized ConnectionStatus connect()
    {
        try
        {
            googleService.setOAuth2Credentials(this.store.get(this.login));
            return ConnectionStatus.SUCCESS;
        }
        catch (FailedAcquireCredentialException e)
        {
            logger.error("Failed to acquire credentials.", e);
            return ConnectionStatus.ERROR_UNKNOWN;
        }
    }

    /**
     * Query for contacts using provided ContactQuery.
     *
     * Executes query. In case of failure, refresh OAuth2 token and retry query.
     * If query fails again, throws FailedContactQueryException.
     *
     * @param query the contact query
     * @return Returns the contact feed with matching contacts.
     * @throws IOException
     * @throws ServiceException
     * @throws FailedContactQueryException Throws in case of failed query.
     * @throws FailedTokenRefreshException Throws in case refreshing OAuth2
     *             token fails.
     */
    public synchronized ContactFeed query(final ContactQuery query)
        throws IOException,
        ServiceException,
        FailedContactQueryException,
        FailedTokenRefreshException
    {
        try
        {
            return this.googleService.query(query, ContactFeed.class);
        }
        catch (NullPointerException e)
        {
            // Don't include a stack trace, since this is will happen at start
            // of Jitsi, as we do not have a valid access token available yet.
            logger.info("Executing query failed with NPE. "
                + "Refreshing access token and trying again.");
            // Maybe we should request an access token immediately after loading
            // the refresh token from the credentials store?
            this.store.refresh();
        }
        catch (Exception e)
        {
            // Catch all and retry with refreshed token. We may need to let this
            // case go through.
            logger.warn("Query failed with unexpected exception. Going to try "
                + "refreshing token anyways ...", e);
            this.store.refresh();
        }
        try
        {
            return this.googleService.query(query, ContactFeed.class);
        }
        catch (Exception e)
        {
            throw new FailedContactQueryException(e);
        }
    }

    /**
     * Returns if the connection is enabled.
     *
     * @return true if connection is enabled, false otherwise
     */
    public boolean isEnabled()
    {
        return enabled;
    }

    /**
     * Set the connection to be enabled or not.
     *
     * @param enabled value to set
     */
    public void setEnabled(boolean enabled)
    {
        this.enabled = enabled;
    }

    /**
     * Sets the google contacts prefix.
     *
     * @param prefix the phone number prefix to set
     */
    public void setPrefix(String prefix)
    {
        this.prefix = prefix;
    }

    /**
     * Returns the google contacts phone number prefix.
     *
     * @return the google contacts phone number prefix
     */
    public String getPrefix()
    {
        return prefix;
    }

    /**
     * Exception for signaling failed contact query.
     *
     * @author Danny van Heumen
     */
    public static class FailedContactQueryException
        extends Exception
    {
        private static final long serialVersionUID = -5451421392081973669L;

        private FailedContactQueryException(Throwable cause)
        {
            super("Failed to query Google Contacts API.", cause);
        }
    }
}