Exemplo n.º 1
0
 /**
  * Load all data
  * @return \Todoist\Todoist
  */
 public function loadAll()
 {
     if (isset($this->projects)) {
         return $this;
     }
     $data = $this->getApiResponse('sync', array('seq_no' => 0, 'seq_no_global' => 0, 'resource_types' => json_encode(array('items', 'projects'))));
     $this->projects = new Projects($data['Projects']);
     $this->projects->setEngine($this);
     $this->tasks = new Tasks($data['Items']);
     $this->tasks->setEngine($this);
     return $this;
 }
Exemplo n.º 2
0
 /**
  * Sync project order and indent based on project NAME.
  *
  * WARNING: Each user has a different project id.
  * Thus, names must be distinct for this to work.
  *
  * @param \Todoist\Project\Projects $tpl
  * @param string $unknown_mode <top|bottom|ignore>
  * @return \Todoist\Project\Projects
  */
 public function &syncOrderIndent($tpl, $unknown_mode = 'ignore')
 {
     // Change the sort order.
     // Projects missing from template should float UP.
     // Warning: Error suppression is required
     // See https://bugs.php.net/bug.php?id=50688
     @$this->uasort(function ($a, $b) use($tpl, $unknown_mode) {
         // Leave Inbox and Team Inbox alone at the top of the list.
         if ($a['name'] === 'Inbox' && $a['item_order'] <= 3) {
             return -1;
         }
         if ($b['name'] === 'Inbox' && $b['item_order'] <= 3) {
             return 1;
         }
         if ($a['name'] === 'Team Inbox' && $a['item_order'] <= 3) {
             return -1;
         }
         if ($b['name'] === 'Team Inbox' && $b['item_order'] <= 3) {
             return 1;
         }
         // Init comparison vars.
         $a_tpl = $b_tpl = NULL;
         $unknown_order = $unknown_mode === 'top' ? -1 : 10000;
         // If a is new, then leave alone.
         try {
             $a_tpl = $tpl->getProject($a['name']);
         } catch (\Exception $e) {
             if ($unknown_mode === 'ignore') {
                 $a_tpl = $a;
             } else {
                 $a_tpl = array('item_order' => $unknown_order);
             }
         }
         // If b is new, then leave alone
         try {
             $b_tpl = $tpl->getProject($b['name']);
         } catch (\Exception $e) {
             if ($unknown_mode === 'ignore') {
                 $b_tpl = $b;
             } else {
                 $b_tpl = array('item_order' => $unknown_order);
             }
         }
         if ($a_tpl['item_order'] < $b_tpl['item_order']) {
             return -1;
         } elseif ($a_tpl['item_order'] == $b_tpl['item_order']) {
             return 0;
         }
         return 1;
     });
     // Change the item_order codes based on the current order.
     $item_order = 0;
     foreach ($this as &$project) {
         if (preg_match('@^Inbox$|^Team Inbox$@s', $project['name']) && $project['item_order'] == 0) {
             // Do nothing. Do not change sort order of special folders.
         } else {
             $project['item_order'] = $item_order;
         }
         ++$item_order;
         try {
             $find = $tpl->getProject($project['name']);
             $project['indent'] = $find['indent'];
             $project['color'] = $find['color'];
             $project->save();
         } catch (\Exception $e) {
             // Not found - leave the indent alone.
             // echo "UNKNOWN: $project[name]\n";
         }
     }
     return $this;
 }