UNCCGameDay/src/com/uncc/gameday/activities/Alerts.java

147 lines
4.6 KiB
Java
Raw Normal View History

2013-09-30 14:39:15 -04:00
package com.uncc.gameday.activities;
2013-10-04 21:43:36 -04:00
import java.util.Iterator;
import java.util.List;
import twitter4j.Paging;
import twitter4j.Status;
import twitter4j.Twitter;
import twitter4j.TwitterException;
import twitter4j.TwitterFactory;
import com.uncc.gameday.R;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.widget.CheckBox;
import android.widget.Toast;
2013-09-30 14:23:13 -04:00
public class Alerts extends MenuActivity {
Context ctx;
2013-10-04 21:43:36 -04:00
int maxTweets = 5; // Most tweets at a time from any source
2013-09-30 14:23:13 -04:00
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.ctx = getApplicationContext();
setContentView(R.layout.activity_alerts);
}
public void fetchAlerts() {
// Fetch all alerts. Responsible for discovering what sources need to be fetched.
if (((CheckBox)findViewById(R.id.alerts_check_timed)).isChecked())
// Fetch timed alerts
this.fetchTimedAlerts();
else if (((CheckBox)findViewById(R.id.alerts_check_organizations)).isChecked())
// Fetch organization alerts
this.fetchOrganizationAlerts();
else if (((CheckBox)findViewById(R.id.alerts_check_university)).isChecked())
// Fetch university alerts
this.fetchUniversityAlerts();
// And always fetch alerts made by us. Period.
this.fetchGamedayAlerts();
}
private void fetchTimedAlerts() {
// Process the rules for all timed alerts.
}
private void fetchOrganizationAlerts() {
2013-10-04 21:43:36 -04:00
// Process fetching organization alerts (alerts retweeted by us)
int duration = Toast.LENGTH_SHORT;
try {
String handle = getString(R.string.gameday_handle);
Twitter twitter = TwitterFactory.getSingleton();
List<Status> statuses = twitter.getUserTimeline(handle, new Paging(1, maxTweets));
// Filter for anything created by us (retweet)
for (Iterator<Status> it = statuses.iterator(); it.hasNext();){
// May need to switch to isRetweetByMe (documentation is awful)
if (!it.next().isRetweet())
it.remove();
}
// List contains all valid alerts now
} catch (TwitterException e) {
Toast.makeText(this.ctx, "Unable to fetch alerts for organizations!\nAre you connected to the internet?", duration).show();
e.printStackTrace();
}
}
private void fetchUniversityAlerts() {
// Process fetching university alerts
2013-10-04 21:43:36 -04:00
int duration = Toast.LENGTH_SHORT;
try {
String handle = getString(R.string.university_handle);
Twitter twitter = TwitterFactory.getSingleton();
List<Status> statuses = twitter.getUserTimeline(handle, new Paging(1, maxTweets));
// List contains all valid alerts now
} catch (TwitterException e) {
Toast.makeText(this.ctx, "Unable to fetch alerts for the University!\nAre you connected to the internet?", duration).show();
e.printStackTrace();
}
}
private void fetchGamedayAlerts() {
// Process fetching alerts generated by staff of UNCCGameDay
2013-10-04 21:43:36 -04:00
int duration = Toast.LENGTH_SHORT;
try {
String handle = getString(R.string.gameday_handle);
Twitter twitter = TwitterFactory.getSingleton();
List<Status> statuses = twitter.getUserTimeline(handle, new Paging(1, maxTweets));
// Filter out anything not from us
for (Iterator<Status> it = statuses.iterator(); it.hasNext();){
// May need to switch to isRetweetByMe (documentation is awful)
if (it.next().isRetweet())
it.remove();
}
// List contains all valid alerts now.
} catch (TwitterException e) {
Toast.makeText(this.ctx, "Unable to fetch alerts from Gameday!\nAre you connected to the internet?", duration).show();
e.printStackTrace();
}
}
public void onClickTimedAlerts(View view) {
int toastDuration = Toast.LENGTH_SHORT;
if (((CheckBox) view).isChecked())
// Enable Timed alerts
Toast.makeText(this.ctx, "Timed alerts enabled.", toastDuration).show();
else
// Disable Timed alerts
Toast.makeText(this.ctx, "Timed alerts disabled.", toastDuration).show();
}
public void onClickOrganizationAlerts(View view) {
int toastDuration = Toast.LENGTH_SHORT;
if (((CheckBox) view).isChecked())
// Enable Organization alerts
Toast.makeText(this.ctx, "Organization alerts enabled.", toastDuration).show();
else
// Disable Organization alerts
Toast.makeText(this.ctx, "Organization alerts disabled.", toastDuration).show();
}
public void onClickUniversityAlerts(View view) {
int toastDuration = Toast.LENGTH_SHORT;
if (((CheckBox) view).isChecked())
// Enable University alerts
Toast.makeText(this.ctx, "University alerts enabled.", toastDuration).show();
else
// Disable University alerts
Toast.makeText(this.ctx, "University alerts disabled.", toastDuration).show();
}
2013-09-30 14:23:13 -04:00
}