aboutsummaryrefslogtreecommitdiffstats
path: root/mod/tasks.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-20 16:49:13 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-20 16:49:13 -0700
commit6590ca02de462acd141e1f890aff36877adafa80 (patch)
tree51a1238120008548a5fc1b4d72f3e16820af899c /mod/tasks.php
parenta322254f2aa02f662667eeb0bdd4e8646cd029c2 (diff)
downloadvolse-hubzilla-6590ca02de462acd141e1f890aff36877adafa80.tar.gz
volse-hubzilla-6590ca02de462acd141e1f890aff36877adafa80.tar.bz2
volse-hubzilla-6590ca02de462acd141e1f890aff36877adafa80.zip
some event related fixes and some base work for implementing native tasks (to-do lists); which should already be importable and exportable.
Diffstat (limited to 'mod/tasks.php')
-rw-r--r--mod/tasks.php93
1 files changed, 93 insertions, 0 deletions
diff --git a/mod/tasks.php b/mod/tasks.php
new file mode 100644
index 000000000..8220b9962
--- /dev/null
+++ b/mod/tasks.php
@@ -0,0 +1,93 @@
+<?php
+
+
+function tasks_post(&$a) {
+
+ if(! local_channel())
+ return;
+
+ $channel = $a->get_channel();
+
+ if((argc() > 2) && (argv(1) === 'complete') && intval(argv(2))) {
+ $ret = array('success' => false);
+ $r = q("select * from event where `type` = 'task' and uid = %d and id = %d limit 1",
+ intval(local_channel()),
+ intval(argv(2))
+ );
+ if($r) {
+ $event = $r[0];
+ if($event['event_status'] === 'COMPLETED') {
+ $event['event_status'] = 'IN-PROCESS';
+ $event['event_status_date'] = NULL_DATE;
+ $event['event_percent'] = 0;
+ $event['event_sequence'] = $event['event_sequence'] + 1;
+ $event['edited'] = datetime_convert();
+ }
+ else {
+ $event['event_status'] = 'COMPLETED';
+ $event['event_status_date'] = datetime_convert();
+ $event['event_percent'] = 100;
+ $event['event_sequence'] = $event['event_sequence'] + 1;
+ $event['edited'] = datetime_convert();
+ }
+ $x = event_store_event($event);
+ if($x)
+ $ret['success'] = true;
+ }
+ json_return_and_die($ret);
+ }
+
+ if(argc() == 2 && argv(1) === 'new') {
+ $text = escape_tags(trim($_REQUEST['summary']));
+ if(! $text)
+ return array('success' => false);
+ $event = array();
+ $event['aid'] = $channel['channel_account_id'];
+ $event['uid'] = $channel['channel_id'];
+ $event['event_xchan'] = $channel['channel_hash'];
+ $event['type'] = 'task';
+ $event['nofinish'] = true;
+ $event['created'] = $event['edited'] = $event['start'] = datetime_convert();
+ $event['adjust'] = 1;
+ $event['allow_cid'] = '<' . $channel['channel_hash'] . '>';
+ $event['summary'] = escape_tags($_REQUEST['summary']);
+ $x = event_store_event($event);
+ if($x)
+ $x['success'] = true;
+ else
+ $x = array('success' => false);
+ json_return_and_die($x);
+ }
+
+
+}
+
+
+
+
+
+function tasks_content(&$a) {
+
+ if(! local_channel())
+ return;
+
+ $ret = array();
+ $sql_extra = " and event_status != 'COMPLETED' ";
+ if(argc() > 1 && argv(1) === 'all')
+ $sql_extra = '';
+
+
+ $r = q("select * from event where type = 'task' and uid = %d $sql_extra ",
+ intval(local_channel())
+ );
+
+ $ret['success'] = (($r) ? true : false);
+ if($r) {
+ $ret['tasks'] = $r;
+ }
+
+ json_return_and_die($r);
+
+
+
+} \ No newline at end of file