- PHP >= 5.5.9
- php JsonMapper
- phpdotenv
-
Download and Install PHP Composer.
curl -sS https://getcomposer.org/installer | php
-
Next, run the Composer command to install the latest version of php jira rest client.
php composer.phar require lesstif/php-jira-rest-client
or add the following to your composer.json file.
{ "require": { "lesstif/php-jira-rest-client": "^1.19" } }
-
Then run Composer's install or update commands to complete installation.
php composer.phar install
-
After installing, you need to require Composer's autoloader:
require 'vendor/autoload.php';
Laravel: Once installed, if you are not using automatic package discovery, then you need to register the JiraRestApi\JiraRestApiServiceProvider
service provider in your config/app.php
.
you can choose loads environment variables either 'dotenv' or 'array'.
copy .env.example file to .env on your project root.
JIRA_HOST="https://your-jira.host.com"
JIRA_USER="jira-username"
JIRA_PASS="jira-password-OR-api-token"
# to enable session cookie authorization
# COOKIE_AUTH_ENABLED=true
# COOKIE_FILE=storage/jira-cookie.txt
# if you are behind a proxy, add proxy settings
PROXY_SERVER="your-proxy-server"
PROXY_PORT="proxy-port"
PROXY_USER="proxy-username"
PROXY_PASSWORD="proxy-password"
Important Note: As of March 15, 2018, in accordance to the Atlassian REST API Policy, Basic auth with password to be deprecated. Instead of password, you should using API token.
Laravel Users: If you are developing with laravel framework(5.x), you must append above configuration to your application .env file.
create Service class with ArrayConfiguration parameter.
use JiraRestApi\Configuration\ArrayConfiguration;
use JiraRestApi\Issue\IssueService;
$iss = new IssueService(new ArrayConfiguration(
array(
'jiraHost' => 'https://your-jira.host.com',
// for basic authorization:
'jiraUser' => 'jira-username',
'jiraPassword' => 'jira-password-OR-api-token',
// to enable session cookie authorization (with basic authorization only)
'cookieAuthEnabled' => true,
'cookieFile' => storage_path('jira-cookie.txt'),
// if you are behind a proxy, add proxy settings
"proxyServer" => 'your-proxy-server',
"proxyPort" => 'proxy-port',
"proxyUser" => 'proxy-username',
"proxyPassword" => 'proxy-password',
)
));
- Create Project
- Update Project
- Delete Project
- Get Project Info
- Get All Project list
- Get Project Type
- Get Project Version
- Get Issue Info
- Create Issue
- Create Issue - bulk
- Create Sub Task
- Add Attachment
- Update issue
- Change assignee
- Remove issue
- Perform a transition on an issue
- Perform an advanced search, using the JQL
- Remote Issue Link
- Issue time tracking
- Add worklog in Issue
- Edit worklog in Issue
- Get Issue worklog
- Add watcher to Issue
- Send a notification to the recipients
- Create version
- Update version
- Delete version
- Get version related issues
- Get version unresolved issues
Create a new project.
<?php
require 'vendor/autoload.php';
use JiraRestApi\Project\ProjectService;
use JiraRestApi\Project\Project;
use JiraRestApi\JiraException;
try {
$p = new Project();
$p->setKey('EX')
->setName('Example')
->setProjectTypeKey('business')
->setProjectTemplateKey('com.atlassian.jira-core-project-templates:jira-core-project-management')
->setDescription('Example Project description')
->setLead('lesstif')
->setUrl('http://example.com')
->setAssigneeType('PROJECT_LEAD')
->setAvatarId(10130)
->setIssueSecurityScheme(10000)
->setPermissionScheme(10100)
->setNotificationScheme(10100)
->setCategoryId(10100)
;
$proj = new ProjectService();
$pj = $proj->createProject($p);
// "http://example.com/rest/api/2/project/10042"
var_dump($pj->self);
// 10042
var_dump($pj->id);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Update a project. Only non null values sent in JSON will be updated in the project.
Values available for the assigneeType field are: "PROJECT_LEAD" and "UNASSIGNED".
<?php
require 'vendor/autoload.php';
use JiraRestApi\Project\ProjectService;
use JiraRestApi\Project\Project;
use JiraRestApi\JiraException;
try {
$p = new Project();
$p->setName('Updated Example')
->setProjectTypeKey('software')
->setProjectTemplateKey('com.atlassian.jira-software-project-templates:jira-software-project-management')
->setDescription('Updated Example Project description')
->setLead('new-leader')
->setUrl('http://new.example.com')
->setAssigneeType('UNASSIGNED')
;
$proj = new ProjectService();
$pj = $proj->updateProject($p, 'EX');
var_dump($pj);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Deletes a project.
<?php
require 'vendor/autoload.php';
use JiraRestApi\Project\ProjectService;
use JiraRestApi\JiraException;
try {
$proj = new ProjectService();
$pj = $proj->deleteProject('EX');
var_dump($pj);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Project\ProjectService;
use JiraRestApi\JiraException;
try {
$proj = new ProjectService();
$p = $proj->get('TEST');
var_dump($p);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Project\ProjectService;
use JiraRestApi\JiraException;
try {
$proj = new ProjectService();
$prjs = $proj->getAllProjects();
foreach ($prjs as $p) {
echo sprintf("Project Key:%s, Id:%s, Name:%s, projectCategory: %s\n",
$p->key, $p->id, $p->name, $p->projectCategory['name']
);
}
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
See Jira API reference (get all types)
See Jira API reference (get type)
<?php
require 'vendor/autoload.php';
use JiraRestApi\Project\ProjectService;
use JiraRestApi\JiraException;
try {
$proj = new ProjectService();
// get all project type
$prjtyps = $proj->getProjectTypes();
foreach ($prjtyps as $pt) {
var_dump($pt);
}
// get specific project type.
$pt = $proj->getProjectType('software');
var_dump($pt);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
get all project's versions.
<?php
require 'vendor/autoload.php';
use JiraRestApi\Project\ProjectService;
use JiraRestApi\JiraException;
try {
$proj = new ProjectService();
$vers = $proj->getVersions('TEST');
foreach ($vers as $v) {
// $v is JiraRestApi\Issue\Version
var_dump($v);
}
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
or get pagenated project's versions.
<?php
require 'vendor/autoload.php';
use JiraRestApi\Project\ProjectService;
use JiraRestApi\JiraException;
try {
$param = [
'startAt' => 0,
'maxResults' => 10,
'orderBy' => 'name',
//'expand' => null,
];
$proj = new ProjectService();
$vers = $proj->getVersionsPagenated('TEST', $param);
foreach ($vers as $v) {
// $v is JiraRestApi\Issue\Version
var_dump($v);
}
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Field\Field;
use JiraRestApi\Field\FieldService;
use JiraRestApi\JiraException;
try {
$fieldService = new FieldService();
// return custom field only.
$ret = $fieldService->getAllFields(Field::CUSTOM);
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(false, 'testSearch Failed : '.$e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Field\Field;
use JiraRestApi\Field\FieldService;
use JiraRestApi\JiraException;
try {
$field = new Field();
$field->setName("New custom field")
->setDescription("Custom field for picking groups")
->setType("com.atlassian.jira.plugin.system.customfieldtypes:grouppicker")
->setSearcherKey("com.atlassian.jira.plugin.system.customfieldtypes:grouppickersearcher");
$fieldService = new FieldService();
$ret = $fieldService->create($field);
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(false, 'Field Create Failed : '.$e->getMessage());
}
If you need a list of custom field types(ex. com.atlassian.jira.plugin.system.customfieldtypes:grouppicker) , check out Get All Field list.
Returns a full representation of the issue for the given issue key.
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
try {
$issueService = new IssueService();
$queryParam = [
'fields' => [ // default: '*all'
'summary',
'comment',
],
'expand' => [
'renderedFields',
'names',
'schema',
'transitions',
'operations',
'editmeta',
'changelog',
]
];
$issue = $issueService->get('TEST-867', $queryParam);
var_dump($issue->fields);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
You can access the custom field associated with issue through $issue->fields->customFields array or through direct custom field id variables(Ex: $issue->fields->customfield_10300).
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\IssueField;
use JiraRestApi\JiraException;
try {
$issueField = new IssueField();
$issueField->setProjectKey("TEST")
->setSummary("something's wrong")
->setAssigneeName("lesstif")
->setPriorityName("Critical")
->setIssueType("Bug")
->setDescription("Full description for issue")
->addVersion(["1.0.1", "1.0.3"])
->addComponents(['Component-1', 'Component-2'])
// set issue security if you need.
->setSecurityId(10001 /* security scheme id */)
->setDueDate('2019-06-19')
;
$issueService = new IssueService();
$ret = $issueService->create($issueField);
//If success, Returns a link to the created issue.
var_dump($ret);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
If you want to set custom field, you can call the addCustomField function with custom field id and value as parameters.
try {
$issueField = new IssueField();
$issueField->setProjectKey("TEST")
->setSummary("something's wrong")
->setAssigneeName("lesstif")
->setPriorityName("Critical")
->setIssueType("Bug")
->setDescription("Full description for issue")
->addVersion("1.0.1")
->addVersion("1.0.3")
->addCustomField('customfield_10100', 'text area body text']) // String type custom field
->addCustomField('customfield_10200', ['value' => 'Linux']) // Select List (single choice)
->addCustomField('customfield_10408', [
['value' => 'opt2'], ['value' => 'opt4']
]) // Select List (multiple choice)
;
$issueService = new IssueService();
$ret = $issueService->create($issueField);
//If success, Returns a link to the created issue.
var_dump($ret);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Currently, not tested for all custom field types.
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\IssueField;
use JiraRestApi\JiraException;
try {
$issueFieldOne = new IssueField();
$issueFieldOne->setProjectKey("TEST")
->setSummary("something's wrong")
->setPriorityName("Critical")
->setIssueType("Bug")
->setDescription("Full description for issue");
$issueFieldTwo = new IssueField();
$issueFieldTwo->setProjectKey("TEST")
->setSummary("something else is wrong")
->setPriorityName("Critical")
->setIssueType("Bug")
->setDescription("Full description for second issue");
$issueService = new IssueService();
$ret = $issueService->createMultiple([$issueFieldOne, $issueFieldTwo]);
//If success, returns an array of the created issues
var_dump($ret);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Creating a sub-task is similar to creating a regular issue, with two important method calls:
->setIssueType('Sub-task')
->setParentKeyOrId($issueKeyOrId)
for example
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\IssueField;
use JiraRestApi\JiraException;
try {
$issueField = new IssueField();
$issueField->setProjectKey("TEST")
->setSummary("something's wrong")
->setAssigneeName("lesstif")
->setPriorityName("Critical")
->setDescription("Full description for issue")
->addVersion("1.0.1")
->addVersion("1.0.3")
->setIssueType("Sub-task") //issue type must be Sub-task
->setParentKeyOrId('TEST-143') //Issue Key
;
$issueService = new IssueService();
$ret = $issueService->create($issueField);
//If success, Returns a link to the created sub task.
var_dump($ret);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
$issueKey = "TEST-879";
try {
$issueService = new IssueService();
// multiple file upload support.
$ret = $issueService->addAttachments($issueKey,
['screen_capture.png', 'bug-description.pdf', 'README.md']
);
print_r($ret);
} catch (JiraException $e) {
$this->assertTrue(FALSE, "Attach Failed : " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\IssueField;
use JiraRestApi\JiraException;
$issueKey = "TEST-879";
try {
$issueField = new IssueField(true);
$issueField->setAssigneeName("admin")
->setPriorityName("Blocker")
->setIssueType("Task")
->addLabel("test-label-first")
->addLabel("test-label-second")
->addVersion("1.0.1")
->addVersion("1.0.2")
->setDescription("This is a shorthand for a set operation on the summary field")
;
// optionally set some query params
$editParams = [
'notifyUsers' => false,
];
$issueService = new IssueService();
// You can set the $paramArray param to disable notifications in example
$ret = $issueService->update($issueKey, $issueField, $editParams);
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(FALSE, "update Failed : " . $e->getMessage());
}
If you want to change the custom field type when updating an issue, you can call the addCustomField function just as you did for creating issue.
This function is a convenient wrapper for add or remove label in the issue.
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
try {
$issueKey = 'TEST-123';
$issueService = new IssueService();
$addLabels = [
'triaged', 'customer-request', 'sales-request'
];
$removeLabel = [
'will-be-remove', 'this-label-is-typo'
];
$ret = $issueService->updateLabels($issueKey,
$addLabels,
$removeLabel,
$notifyUsers = false
);
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(false, 'updateLabels Failed : '.$e->getMessage());
}
This function is a convenient wrapper for add or remove fix version in the issue.
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
try {
$issueKey = 'TEST-123';
$issueService = new IssueService();
$addVersions = [
'1.1.1', 'named-version'
];
$removeVersions = [
'1.1.0', 'old-version'
];
$ret = $issueService->updateFixVersions($issueKey,
$addVersions,
$removeVersions,
$notifyUsers = false
);
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(false, 'updateFixVersions Failed : '.$e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
$issueKey = "TEST-879";
try {
$issueService = new IssueService();
// if assignee is -1, automatic assignee used.
// A null assignee will remove the assignee.
$assignee = 'newAssigneeName';
$ret = $issueService->changeAssignee($issueKey, $assignee);
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(FALSE, "Change Assignee Failed : " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
$issueKey = "TEST-879";
try {
$issueService = new IssueService();
$ret = $issueService->deleteIssue($issueKey);
// if you want to delete issues with sub-tasks
//$ret = $issueService->deleteIssue($issueKey, array('deleteSubtasks' => 'true'));
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(FALSE, "Change Assignee Failed : " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\Comment;
use JiraRestApi\JiraException;
$issueKey = "TEST-879";
try {
$comment = new Comment();
$body = <<<COMMENT
Adds a new comment to an issue.
* Bullet 1
* Bullet 2
** sub Bullet 1
** sub Bullet 2
* Bullet 3
COMMENT;
$comment->setBody($body)
->setVisibility('role', 'Users');
;
$issueService = new IssueService();
$ret = $issueService->addComment($issueKey, $comment);
print_r($ret);
} catch (JiraException $e) {
$this->assertTrue(FALSE, "add Comment Failed : " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
$issueKey = "TEST-879";
try {
$issueService = new IssueService();
$comments = $issueService->getComments($issueKey);
var_dump($comments);
} catch (JiraException $e) {
$this->assertTrue(false, 'get Comment Failed : '.$e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
$issueKey = "TEST-879";
try {
$commentId = 12345;
$issueService = new IssueService();
$ret = $issueService->deleteComment($issueKey, $commentId);
} catch (JiraException $e) {
$this->assertTrue(false, 'Delete comment Failed : '.$e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
use JiraRestApi\Issue\Comment;
$issueKey = "TEST-879";
try {
$commentId = 12345;
$issueService = new IssueService();
$comment = new Comment();
$comment->setBody('Updated comments');
$issueService->updateComment($issueKey, $commentId, $comment);
} catch (JiraException $e) {
$this->assertTrue(false, 'Delete comment Failed : '.$e->getMessage());
}
Note: this library uses goal status names instead of transition names.
So, if you want to change issue status to 'Some Status',
you should pass that status name to setTransitionName
i.e. $transition->setTransitionName('Some Status')
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\Transition;
use JiraRestApi\JiraException;
$issueKey = "TEST-879";
try {
$transition = new Transition();
$transition->setTransitionName('Resolved');
$transition->setCommentBody('performing the transition via REST API.');
$issueService = new IssueService();
$issueService->transition($issueKey, $transition);
} catch (JiraException $e) {
$this->assertTrue(FALSE, "add Comment Failed : " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
$jql = 'project not in (TEST) and assignee = currentUser() and status in (Resolved, closed)';
try {
$issueService = new IssueService();
$ret = $issueService->search($jql);
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(false, 'testSearch Failed : '.$e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
$jql = 'project not in (TEST) and assignee = currentUser() and status in (Resolved, closed)';
try {
$issueService = new IssueService();
$pagination = -1;
$startAt = 0; //the index of the first issue to return (0-based)
$maxResult = 3; // the maximum number of issues to return (defaults to 50).
$totalCount = -1; // the number of issues to return
// first fetch
$ret = $issueService->search($jql, $startAt, $maxResult);
$totalCount = $ret->total;
// do something with fetched data
foreach ($ret->issues as $issue) {
print (sprintf("%s %s \n", $issue->key, $issue->fields->summary));
}
// fetch remained data
$page = $totalCount / $maxResult;
for ($startAt = 1; $startAt < $page; $startAt++) {
$ret = $issueService->search($jql, $startAt, $maxResult);
print ("\nPaging $startAt\n");
print ("-------------------\n");
foreach ($ret->issues as $issue) {
print (sprintf("%s %s \n", $issue->key, $issue->fields->summary));
}
}
} catch (JiraException $e) {
$this->assertTrue(false, 'testSearch Failed : '.$e->getMessage());
}
If you're not familiar JQL then you can use convenience JqlQuery class.
JqlFunction class can be used to add jql functions calls to query.
You can find the names of almost all fields, functions, keywords and operators
defined as constants in JqlQuery
and static methods in JqlFunciton
classes.
For more info see the Jira docs (link above).
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\JqlQuery;
use JiraRestApi\JiraException;
use JiraRestApi\Issue\JqlFunction;
try {
$jql = new JqlQuery();
$jql->setProject('TEST')
->setType('Bug')
->setStatus('In Progress')
->setAssignee(JqlFunction::currentUser())
->setCustomField('My Custom Field', 'value')
->addIsNotNullExpression('due');
$issueService = new IssueService();
$ret = $issueService->search($jql->getQuery());
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(false, 'testSearch Failed : '.$e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
$issueKey = 'TEST-316';
try {
$issueService = new IssueService();
$rils = $issueService->getRemoteIssueLink($issueKey);
// rils is array of RemoteIssueLink classes
var_dump($rils);
} catch (JiraException $e) {
$this->assertTrue(false, $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\RemoteIssueLink;
use JiraRestApi\JiraException;
$issueKey = 'TEST-316';
try {
$issueService = new IssueService();
$ril = new RemoteIssueLink();
$ril->setUrl('http://www.mycompany.com/support?id=1')
->setTitle('Remote Link Title')
->setRelationship('causes')
->setSummary('Crazy customer support issue')
;
$rils = $issueService->createOrUpdateRemoteIssueLink($issueKey, $ril);
// rils is array of RemoteIssueLink classes
var_dump($rils);
} catch (JiraException $e) {
$this->assertTrue(false, 'Create Failed : '.$e->getMessage());
}
This methods use get issue
and edit issue
methods internally.
See Jira API reference (get issue)
See Jira API reference (edit issue)
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\TimeTracking;
use JiraRestApi\JiraException;
$issueKey = 'TEST-961';
try {
$issueService = new IssueService();
// get issue's time tracking info
$ret = $issueService->getTimeTracking($this->issueKey);
var_dump($ret);
$timeTracking = new TimeTracking;
$timeTracking->setOriginalEstimate('3w 4d 6h');
$timeTracking->setRemainingEstimate('1w 2d 3h');
// add time tracking
$ret = $issueService->timeTracking($this->issueKey, $timeTracking);
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(false, 'testSearch Failed : '.$e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\Worklog;
use JiraRestApi\JiraException;
$issueKey = 'TEST-961';
try {
$workLog = new Worklog();
$workLog->setComment('I did some work here.')
->setStarted("2016-05-28 12:35:54")
->setTimeSpent('1d 2h 3m');
$issueService = new IssueService();
$ret = $issueService->addWorklog($issueKey, $workLog);
$workLogid = $ret->{'id'};
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(false, 'Create Failed : '.$e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\Worklog;
use JiraRestApi\JiraException;
$issueKey = 'TEST-961';
$workLogid = '12345';
try {
$workLog = new Worklog();
$workLog->setComment('I did edit previous worklog here.')
->setStarted("2016-05-29 13:15:34")
->setTimeSpent('3d 4h 5m');
$issueService = new IssueService();
$ret = $issueService->editWorklog($issueKey, $workLog, $workLogid);
var_dump($ret);
} catch (JiraException $e) {
$this->assertTrue(false, 'Edit worklog Failed : '.$e->getMessage());
}
See Jira API reference (get full issue worklog)
See Jira API reference (get worklog by id)
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
$issueKey = 'TEST-961';
try {
$issueService = new IssueService();
// get issue's all worklog
$worklogs = $issueService->getWorklog($issueKey)->getWorklogs();
var_dump($worklogs);
// get worklog by id
$wlId = 12345;
$wl = $issueService->getWorklogById($issueKey, $wlId);
var_dump($wl);
} catch (JiraException $e) {
$this->assertTrue(false, 'testSearch Failed : '.$e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\JiraException;
$issueKey = 'TEST-961';
try {
$issueService = new IssueService();
// watcher's id
$watcher = 'lesstif';
$issueService->addWatcher($issueKey, $watcher);
} catch (JiraException $e) {
$this->assertTrue(false, 'add watcher Failed : '.$e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\IssueService;
use JiraRestApi\Issue\Notify;
use JiraRestApi\JiraException;
$issueKey = 'TEST-961';
try {
$issueService = new IssueService();
$noti = new Notify();
$noti->setSubject('notify test')
->setTextBody('notify test text body')
->setHtmlBody('<h1>notify</h1>test html body')
->sendToAssignee(true)
->sendToWatchers(true)
->sendToUser('lesstif', true)
->sendToGroup('temp-group')
;
$issueService->notify($issueKey, $noti);
} catch (JiraException $e) {
$this->assertTrue(false, 'Issue notify Failed : '.$e->getMessage());
}
The Link Issue Resource provides functionality to manage issue links.
<?php
require 'vendor/autoload.php';
use JiraRestApi\IssueLink\IssueLink;
use JiraRestApi\IssueLink\IssueLinkService;
use JiraRestApi\JiraException;
try {
$il = new IssueLink();
$il->setInwardIssue('TEST-258')
->setOutwardIssue('TEST-249')
->setLinkTypeName('Relates' )
->setComment('Linked related issue via REST API.');
$ils = new IssueLinkService();
$ret = $ils->addIssueLink($il);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Rest resource to retrieve a list of issue link types.
<?php
require 'vendor/autoload.php';
use JiraRestApi\IssueLink\IssueLinkService;
use JiraRestApi\JiraException;
try {
$ils = new IssueLinkService();
$ret = $ils->getIssueLinkTypes();
var_dump($ret);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Create user. By default created user will not be notified with email. If password field is not set then password will be randomly generated.
<?php
require 'vendor/autoload.php';
use JiraRestApi\JiraException;
use JiraRestApi\User\UserService;
try {
$us = new UserService();
// create new user
$user = $us->create([
'name'=>'charlie',
'password' => 'abracadabra',
'emailAddress' => '[email protected]',
'displayName' => 'Charlie of Atlassian',
]);
var_dump($user);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Returns a user.
<?php
require 'vendor/autoload.php';
use JiraRestApi\JiraException;
use JiraRestApi\User\UserService;
try {
$us = new UserService();
$user = $us->get(['username' => 'lesstif']);
var_dump($user);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Returns a list of users that match the search string and/or property.
<?php
require 'vendor/autoload.php';
use JiraRestApi\JiraException;
use JiraRestApi\User\UserService;
try {
$us = new UserService();
$paramArray = [
'username' => '.', // get all users.
'startAt' => 0,
'maxResults' => 1000,
'includeInactive' => true,
//'property' => '*',
];
// get the user info.
$users = $us->findUsers($paramArray);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Returns a list of users that match the search string.
<?php
require 'vendor/autoload.php';
use JiraRestApi\JiraException;
use JiraRestApi\User\UserService;
try {
$us = new UserService();
$paramArray = [
//'username' => null,
'project' => 'TEST',
//'issueKey' => 'TEST-1',
'startAt' => 0,
'maxResults' => 50, //max 1000
//'actionDescriptorId' => 1,
];
$users = $us->findAssignableUsers($paramArray);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Removes user.
<?php
require 'vendor/autoload.php';
use JiraRestApi\JiraException;
use JiraRestApi\User\UserService;
try {
$us = new UserService();
$paramArray = ['username' => '[email protected]'];
$users = $us->deleteUser($paramArray);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Create new group.
<?php
require 'vendor/autoload.php';
use JiraRestApi\JiraException;
use JiraRestApi\Group\GroupService;
use JiraRestApi\Group\Group;
try {
$g = new Group();
$g->name = 'Test group for REST API';
$gs = new GroupService();
$ret = $gs->createGroup($g);
var_dump($ret);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
returns a paginated list of users who are members of the specified group and its subgroups.
<?php
require 'vendor/autoload.php';
use JiraRestApi\JiraException;
use JiraRestApi\Group\GroupService;
try {
$queryParam = [
'groupname' => 'Test group for REST API',
'includeInactiveUsers' => true, // default false
'startAt' => 0,
'maxResults' => 50,
];
$gs = new GroupService();
$ret = $gs->getMembers($queryParam);
// print all users in the group
foreach($ret->values as $user) {
print_r($user);
}
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
add user to given group.
<?php
require 'vendor/autoload.php';
use JiraRestApi\JiraException;
use JiraRestApi\Group\GroupService;
try {
$groupName = '한글 그룹 name';
$userName = 'lesstif';
$gs = new GroupService();
$ret = $gs->addUserToGroup($groupName, $userName);
// print current state of the group.
print_r($ret);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Removes given user from a group.
<?php
require 'vendor/autoload.php';
use JiraRestApi\JiraException;
use JiraRestApi\Group\GroupService;
try {
$groupName = '한글 그룹 name';
$userName = 'lesstif';
$gs = new GroupService();
$gs->removeUserFromGroup($groupName, $userName);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Priority\PriorityService;
use JiraRestApi\JiraException;
try {
$ps = new PriorityService();
$p = $ps->getAll();
var_dump($p);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Priority\PriorityService;
use JiraRestApi\JiraException;
try {
$ps = new PriorityService();
$p = $ps->get(1);
var_dump($p);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Attachment\AttachmentService;
use JiraRestApi\JiraException;
try {
$attachmentId = 12345;
$atts = new AttachmentService();
$att = $atts->get($attachmentId);
var_dump($att);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Gets the attachment information and saves the attachment into the outDir directory.
<?php
require 'vendor/autoload.php';
use JiraRestApi\Attachment\AttachmentService;
use JiraRestApi\JiraException;
try {
$attachmentId = 12345;
$outDir = "attachment_dir";
$atts = new AttachmentService();
$att = $atts->get($attachmentId, $outDir, $overwrite = true);
var_dump($att);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Attachment\AttachmentService;
use JiraRestApi\JiraException;
try {
$attachmentId = 12345;
$atts = new AttachmentService();
$atts->remove($attachmentId);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Issue\Version;
use JiraRestApi\Project\ProjectService;
use JiraRestApi\Version\VersionService;
use JiraRestApi\JiraException;
try {
$projectService = new ProjectService();
$project = $projectService->get('TEST');
$versionService = new VersionService();
$version = new Version();
$version->setName('1.0.0')
->setDescription('Generated by script')
->setReleased(true)
->setReleaseDate(new \DateTime())
->setProjectId($project->id);
$res = $versionService->create($version);
var_dump($res);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Version\VersionService;
use JiraRestApi\Project\ProjectService;
use JiraRestApi\JiraException;
try {
$versionService = new VersionService();
$projectService = new ProjectService();
$ver = $projectService->getVersion('TEST', '1.0.0');
// update version
$ver->setName($ver->name . ' Updated name')
->setDescription($ver->description . ' Updated description')
->setReleased(false)
->setReleaseDate(
(new \DateTime())->add(date_interval_create_from_date_string('1 months 3 days'))
);
$res = $versionService->update($ver);
var_dump($res);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Version\VersionService;
use JiraRestApi\Project\ProjectService;
use JiraRestApi\JiraException;
try {
$versionService = new VersionService();
$projectService = new ProjectService();
$version = $projectService->getVersion('TEST', '1.0.0');
$res = $versionService->delete($version);
var_dump($res);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Version\VersionService;
use JiraRestApi\Project\ProjectService;
use JiraRestApi\JiraException;
try {
$versionService = new VersionService();
$projectService = new ProjectService();
$version = $projectService->getVersion('TEST', '1.0.0');
$res = $versionService->getRelatedIssues($version);
var_dump($res);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
<?php
require 'vendor/autoload.php';
use JiraRestApi\Version\VersionService;
use JiraRestApi\Project\ProjectService;
use JiraRestApi\JiraException;
try {
$versionService = new VersionService();
$projectService = new ProjectService();
$version = $projectService->getVersion('TEST', '1.0.0');
$res = $versionService->getUnresolvedIssues($version);
var_dump($res);
} catch (JiraException $e) {
print("Error Occured! " . $e->getMessage());
}
Apache V2 License
- 6.4 - https://docs.atlassian.com/jira/REST/6.4/
- Jira Server latest - https://docs.atlassian.com/jira/REST/server/
- Jira Cloud latest - https://docs.atlassian.com/jira/REST/latest/