summaryrefslogtreecommitdiff
path: root/src/org/fox/ttrss/widget/WidgetUpdateService.java
blob: 4d19526d776733e8ded530702cd02d64cc33134f (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
package org.fox.ttrss.widget;

import java.util.HashMap;

import org.fox.ttrss.ApiRequest;
import org.fox.ttrss.R;

import com.google.gson.JsonElement;
import com.google.gson.JsonObject;

import android.app.Service;
import android.appwidget.AppWidgetManager;
import android.content.ComponentName;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.IBinder;
import android.preference.PreferenceManager;
import android.util.Log;
import android.view.View;
import android.widget.RemoteViews;

public class WidgetUpdateService extends Service {
	private final String TAG = this.getClass().getSimpleName();

	@Override
	public IBinder onBind(Intent intent) {
		Log.d(TAG, "onBind");
		
		// TODO Auto-generated method stub
		return null;
	}
	
	/* @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
		Log.d(TAG, "onStartCommand");
	
		return super.onStartCommand(intent, flags, startId);
	} */
	
	public void update() {
		
		
	}
	
    @Override
    public void onStart(Intent intent, int startId) {
    	final RemoteViews view = new RemoteViews(getPackageName(), R.layout.widget_small);
    	
    	final ComponentName thisWidget = new ComponentName(this, SmallWidgetProvider.class);
    	final AppWidgetManager manager = AppWidgetManager.getInstance(this);

    	try {
        	view.setTextViewText(R.id.counter, String.valueOf(""));
        	view.setViewVisibility(R.id.progress, View.VISIBLE);

	        manager.updateAppWidget(thisWidget, view);
	        
	        final SharedPreferences m_prefs = PreferenceManager
					.getDefaultSharedPreferences(getApplicationContext());
	   	
	   		if (m_prefs.getString("ttrss_url", "").trim().length() == 0) {
	    			
	    			// Toast: need configure
	    			
	   		} else {
	
	   			ApiRequest ar = new ApiRequest(getApplicationContext()) {
	   				@SuppressWarnings({ "unchecked", "serial" })
					@Override
	   				protected void onPostExecute(JsonElement result) {
	   					if (result != null) {
	   						JsonObject content = result.getAsJsonObject();
	   						
	   						if (content != null) {
	   							final String sessionId = content.get("session_id").getAsString();
	   						
	   							ApiRequest aru = new ApiRequest(getApplicationContext()) {
	   								@Override
	   								protected void onPostExecute(JsonElement result) {
	   									if (result != null) {
	   										JsonObject content = result.getAsJsonObject();
	   										
	   										if (content != null) {
	   											int unread = content.get("unread").getAsInt();
	   											
	   											view.setViewVisibility(R.id.progress, View.GONE);
	   											view.setTextViewText(R.id.counter, String.valueOf(unread));
	   											manager.updateAppWidget(thisWidget, view);
	   											
	   											return;
	   										}   										
	   									}
	   								
	   									view.setViewVisibility(R.id.progress, View.GONE);
	   									view.setTextViewText(R.id.counter, getString(R.string.app_name));
	   									manager.updateAppWidget(thisWidget, view);
	   								}
	   							};
	
	   				   			HashMap<String, String> umap = new HashMap<String, String>() {
	   				   				{
	   				   					put("op", "getUnread");
	   				   					put("sid", sessionId);
	   				   				}
	   				   			};
	
	   							aru.execute(umap);
	   							return;
	   						}
	   					}
	   					
						// Toast: login failed
						
	   			    	view.setViewVisibility(R.id.progress, View.GONE);
	   			    	view.setTextViewText(R.id.counter, getString(R.string.app_name));
	   			        manager.updateAppWidget(thisWidget, view);  					
	   				};
	   			};
	
	   			HashMap<String, String> map = new HashMap<String, String>() {
	   				{
	   					put("op", "login");
	   					put("user", m_prefs.getString("login", "").trim());
	   					put("password", m_prefs.getString("password", "").trim());
	   				}
	   			};
	    			
	   			ar.execute(map);
	   		}
    	} catch (Exception e) {
    		e.printStackTrace();
    		
	    	view.setViewVisibility(R.id.progress, View.GONE);
	    	view.setTextViewText(R.id.counter, getString(R.string.app_name));
	        manager.updateAppWidget(thisWidget, view);  					
	
    	}
    }
}