If you think the Android project gasp-gcm-client listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (c) 2013 Mark Prichard, CloudBees
*/*fromwww.java2s.com*/
* 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.cloudbees.gasp.service;
import android.app.IntentService;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.preference.PreferenceManager;
import android.util.Log;
import com.cloudbees.gasp.activity.ConsoleActivity;
import com.cloudbees.gasp.R;
import com.cloudbees.gasp.adapter.UserDataAdapter;
import com.cloudbees.gasp.model.User;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;
publicclass UserUpdateService extends IntentService implements IRESTListener {
privatestaticfinal String TAG = UserUpdateService.class.getName();
private Uri mGaspUsersUri;
privatevoid getGaspUsersUriSharedPreferences() {
PreferenceManager.setDefaultValues(this, R.xml.preferences, false);
SharedPreferences gaspSharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
String gaspUsersUri = gaspSharedPreferences.getString(getString(R.string.gasp_server_uri_preferences), "")
+ getString(R.string.gasp_users_location);
this.mGaspUsersUri = Uri.parse(gaspUsersUri);
}
public Uri getGaspUsersUri() {
return mGaspUsersUri;
}
public UserUpdateService() {
super("UserUpdateService");
}
@Override
protectedvoid onHandleIntent(Intent intent) {
int index = intent.getIntExtra(ConsoleActivity.ResponseReceiver.PARAM_ID, 0);
if (index == 0) {
Log.d(TAG, "Error - invalid index");
} else {
getGaspUsersUriSharedPreferences();
AsyncRESTClient asyncRestCall = new AsyncRESTClient(mGaspUsersUri, this);
asyncRestCall.getIndex(index);
}
}
@Override
publicvoid onCompleted(String result) {
Log.i(TAG, "Response:" + result + '\n');
if (result != null) {
try {
Gson gson = new Gson();
Type type = new TypeToken<User>() {
}.getType();
User mUser = gson.fromJson(result, type);
UserDataAdapter usersDB = new UserDataAdapter(getApplicationContext());
usersDB.open();
usersDB.insert(mUser);
usersDB.close();
String resultTxt = "Loaded user: " + mUser.getId();
Log.i(TAG, resultTxt + '\n');
Intent broadcastIntent = new Intent();
broadcastIntent.setAction(ConsoleActivity.ResponseReceiver.ACTION_RESP);
broadcastIntent.addCategory(Intent.CATEGORY_DEFAULT);
broadcastIntent.putExtra(ConsoleActivity.ResponseReceiver.PARAM_OUT_MSG, resultTxt);
sendBroadcast(broadcastIntent);
} catch (Exception e) {
e.printStackTrace();
}
}
}
}