2015-02-05 13:41:03 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace DavidBadura\Taskwarrior;
|
|
|
|
|
|
|
|
use JMS\Serializer\Annotation as JMS;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author David Badura <d.a.badura@gmail.com>
|
|
|
|
*/
|
|
|
|
class Task
|
|
|
|
{
|
2015-02-05 17:09:29 -06:00
|
|
|
const STATUS_PENDING = 'pending';
|
2015-02-05 16:00:30 -06:00
|
|
|
const STATUS_COMPLETED = 'completed';
|
2015-02-05 17:09:29 -06:00
|
|
|
const STATUS_DELETED = 'deleted';
|
|
|
|
const STATUS_WAITING = 'waiting';
|
2015-02-05 16:00:30 -06:00
|
|
|
|
2015-02-05 13:41:03 -06:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*
|
|
|
|
* @JMS\Type(name="string")
|
|
|
|
*/
|
|
|
|
private $uuid;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*
|
|
|
|
* @JMS\Type(name="string")
|
|
|
|
*/
|
|
|
|
private $description;
|
|
|
|
|
2015-02-05 17:09:29 -06:00
|
|
|
/**
|
|
|
|
* @var \DateTime
|
|
|
|
*
|
|
|
|
* @JMS\Type(name="DateTime<'Ymd\THis\Z'>")
|
|
|
|
*/
|
|
|
|
private $due;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var float
|
|
|
|
*
|
|
|
|
* @JMS\Type(name="float")
|
|
|
|
*/
|
|
|
|
private $urgency;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \DateTime
|
|
|
|
*
|
|
|
|
* @JMS\Type(name="DateTime<'Ymd\THis\Z'>")
|
|
|
|
*/
|
|
|
|
private $entry;
|
|
|
|
|
2015-02-05 16:00:30 -06:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*
|
|
|
|
* @JMS\Type(name="string")
|
|
|
|
*/
|
|
|
|
private $status;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
2015-02-05 17:09:29 -06:00
|
|
|
$this->urgency = 0;
|
|
|
|
$this->entry = new \DateTime('now', new \DateTimeZone('UTC'));
|
|
|
|
$this->status = self::STATUS_PENDING;
|
2015-02-05 16:00:30 -06:00
|
|
|
}
|
|
|
|
|
2015-02-05 13:41:03 -06:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getUuid()
|
|
|
|
{
|
|
|
|
return $this->uuid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getDescription()
|
|
|
|
{
|
|
|
|
return $this->description;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $description
|
|
|
|
*/
|
|
|
|
public function setDescription($description)
|
|
|
|
{
|
|
|
|
$this->description = $description;
|
|
|
|
}
|
2015-02-05 16:00:30 -06:00
|
|
|
|
|
|
|
/**
|
2015-02-05 17:09:29 -06:00
|
|
|
* @return \DateTime
|
2015-02-05 16:00:30 -06:00
|
|
|
*/
|
2015-02-05 17:09:29 -06:00
|
|
|
public function getDue()
|
2015-02-05 16:00:30 -06:00
|
|
|
{
|
2015-02-05 17:09:29 -06:00
|
|
|
return $this->due;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \DateTime $due
|
|
|
|
*/
|
|
|
|
public function setDue(\DateTime $due = null)
|
|
|
|
{
|
|
|
|
$this->due = $due;
|
2015-02-05 16:00:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-02-05 17:09:29 -06:00
|
|
|
* @return \DateTime
|
2015-02-05 16:00:30 -06:00
|
|
|
*/
|
2015-02-05 17:09:29 -06:00
|
|
|
public function getEntry()
|
2015-02-05 16:00:30 -06:00
|
|
|
{
|
2015-02-05 17:09:29 -06:00
|
|
|
return $this->entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
public function getUrgency()
|
|
|
|
{
|
|
|
|
return $this->urgency;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getStatus()
|
|
|
|
{
|
|
|
|
return $this->status;
|
2015-02-05 16:00:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isPending()
|
|
|
|
{
|
|
|
|
return $this->status == self::STATUS_PENDING;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isCompleted()
|
|
|
|
{
|
|
|
|
return $this->status == self::STATUS_COMPLETED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isWaiting()
|
|
|
|
{
|
|
|
|
return $this->status == self::STATUS_WAITING;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isDeleted()
|
|
|
|
{
|
|
|
|
return $this->status == self::STATUS_DELETED;
|
|
|
|
}
|
2015-02-05 13:41:03 -06:00
|
|
|
}
|