mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
4.2 KiB
Java
147 lines
4.2 KiB
Java
/**
|
|
* Copyright (c) 2012 Todoroo Inc
|
|
*
|
|
* See the file "LICENSE" for the full license governing this code.
|
|
*/
|
|
package com.timsu.astrid.data.alerts;
|
|
|
|
import android.content.ContentValues;
|
|
import android.content.Context;
|
|
import android.database.Cursor;
|
|
import android.database.SQLException;
|
|
import android.database.sqlite.SQLiteDatabase;
|
|
|
|
import com.timsu.astrid.data.LegacyAbstractController;
|
|
import com.timsu.astrid.data.alerts.Alert.AlertDatabaseHelper;
|
|
import com.timsu.astrid.data.task.TaskIdentifier;
|
|
|
|
import java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
import java.util.Set;
|
|
|
|
/**
|
|
* Controller for Tag-related operations
|
|
*/
|
|
|
|
public class AlertController extends LegacyAbstractController {
|
|
|
|
private SQLiteDatabase alertDatabase;
|
|
|
|
/**
|
|
* Get a cursor to tag identifiers
|
|
*/
|
|
public Cursor getTaskAlertsCursor(TaskIdentifier taskId) throws SQLException {
|
|
return alertDatabase.query(alertsTable,
|
|
Alert.FIELD_LIST, Alert.TASK + " = ?",
|
|
new String[]{taskId.idAsString()}, null, null, null);
|
|
}
|
|
|
|
/**
|
|
* Get a list of alerts for the given task
|
|
*/
|
|
public List<Date> getTaskAlerts(TaskIdentifier
|
|
taskId) throws SQLException {
|
|
List<Date> list = new LinkedList<Date>();
|
|
Cursor cursor = alertDatabase.query(alertsTable,
|
|
Alert.FIELD_LIST, Alert.TASK + " = ?",
|
|
new String[]{taskId.idAsString()}, null, null, null);
|
|
|
|
try {
|
|
if (cursor.getCount() == 0) {
|
|
return list;
|
|
}
|
|
do {
|
|
cursor.moveToNext();
|
|
list.add(new Alert(cursor).getDate());
|
|
} while (!cursor.isLast());
|
|
|
|
return list;
|
|
} finally {
|
|
cursor.close();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Get a list of alerts that are set for the future
|
|
*/
|
|
public Set<TaskIdentifier> getTasksWithActiveAlerts() throws SQLException {
|
|
Set<TaskIdentifier> list = new HashSet<TaskIdentifier>();
|
|
Cursor cursor = alertDatabase.query(alertsTable,
|
|
Alert.FIELD_LIST, Alert.DATE + " > ?",
|
|
new String[]{Long.toString(System.currentTimeMillis())}, null, null, null);
|
|
|
|
try {
|
|
if (cursor.getCount() == 0) {
|
|
return list;
|
|
}
|
|
do {
|
|
cursor.moveToNext();
|
|
list.add(new Alert(cursor).getTask());
|
|
} while (!cursor.isLast());
|
|
|
|
return list;
|
|
} finally {
|
|
cursor.close();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove all alerts from the task
|
|
*/
|
|
public boolean removeAlerts(TaskIdentifier taskId)
|
|
throws SQLException {
|
|
return alertDatabase.delete(alertsTable,
|
|
String.format("%s = ?",
|
|
Alert.TASK),
|
|
new String[]{taskId.idAsString()}) > 0;
|
|
}
|
|
|
|
/**
|
|
* Add the given tag to the task
|
|
*/
|
|
public boolean addAlert(TaskIdentifier taskId, Date date)
|
|
throws SQLException {
|
|
ContentValues values = new ContentValues();
|
|
values.put(Alert.DATE, date.getTime());
|
|
values.put(Alert.TASK, taskId.getId());
|
|
return alertDatabase.insert(alertsTable, Alert.TASK,
|
|
values) >= 0;
|
|
}
|
|
|
|
// --- boilerplate
|
|
|
|
/**
|
|
* Constructor - takes the context to allow the database to be
|
|
* opened/created
|
|
*/
|
|
public AlertController(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
/**
|
|
* Open the notes database. If it cannot be opened, try to create a new
|
|
* instance of the database. If it cannot be created, throw an exception to
|
|
* signal the failure
|
|
*
|
|
* @return this (self reference, allowing this to be chained in an
|
|
* initialization call)
|
|
* @throws SQLException if the database could be neither opened or created
|
|
*/
|
|
@Override
|
|
public void open() throws SQLException {
|
|
alertDatabase = new AlertDatabaseHelper(context,
|
|
alertsTable, alertsTable).getWritableDatabase();
|
|
}
|
|
|
|
/**
|
|
* Closes database resource
|
|
*/
|
|
@Override
|
|
public void close() {
|
|
alertDatabase.close();
|
|
}
|
|
}
|