定制 testmonitor/jira-client 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

testmonitor/jira-client

Composer 安装命令:

composer require testmonitor/jira-client

包简介

The TestMonitor Jira Client.

README 文档

README

Latest Stable Version CircleCI StyleCI codecov License

This package provides a very basic, convenient, and unified wrapper for Jira.

Table of Contents

Installation

To install the client you need to require the package using composer:

$ composer require testmonitor/jira-client

Use composer's autoload:

require __DIR__.'/../vendor/autoload.php';

You're all set up now!

Usage

This client only supports oAuth authentication. You'll need an Atlassian Jira application to proceed. If you haven't done so, please read up with the Jira authentication docs on how to create an application.

When your Jira application is up and running, start with the oAuth authorization:

$oauth = [
    'clientId' => '12345',
    'clientSecret' => 'abcdef',
    'redirectUrl' => 'https://redirect.myapp.com/',
];

$jira = new \TestMonitor\Jira\Client($oauth);

header('Location: ' . $jira->authorizationUrl());
exit();

This will redirect the user to a page asking confirmation for your app getting access to Jira. Make sure your redirectUrl points back to your app. This URL should point to the following code:

$oauth = [
    'clientId' => '12345',
    'clientSecret' => 'abcdef',
    'redirectUrl' => 'https://redirect.myapp.com/',
];

$jira = new \TestMonitor\Jira\Client($oauth);

$token = $jira->fetchToken($_REQUEST['code']);

When everything went ok, you should have an access token (available through Token object).

For any subsequent action, you'll need to retrieve your cloud ID to proceed:

$oauth = [
    'clientId' => '12345',
    'clientSecret' => 'abcdef',
    'redirectUrl' => 'https://redirect.myapp.com/',
];

$token = new \TestMonitor\Jira\AccessToken('eyJ0...', '0/34ccc...', 1574601877); // the token you got last time
$jira = new \TestMonitor\Jira\Client($oauth, null, $token);

$account = $jira->account();

Use the cloud ID as a parameter when instantiating the client:

$oauth = [
    'clientId' => '12345',
    'clientSecret' => 'abcdef',
    'redirectUrl' => 'https://redirect.myapp.com/',
];

$token = new \TestMonitor\Jira\AccessToken('eyJ0...', '0/34ccc...', 1574601877);
$jira = new \TestMonitor\Jira\Client($oauth, $account->id, $token);

That's it!

Please note that the access token will be valid for one hour. When it expires, you'll need to refresh it:

if ($token->expired()) {
    $newToken = $jira->refreshToken();
}

The new token will be valid again for the next hour.

Examples

Retrieve the details for a project using its key:

$project = $jira->project('KEY');

Or create a new issue using the first available issue type:

$issueTypes = $jira->issueTypes('KEY');

$issue = $jira->createIssue(new \TestMonitor\Jira\Resources\Issue([
    'summary' => 'It is time Marty!',
    'description' => 'Great Scot!',
    'project' => $project,
    'type' => $issueType[0],
]));

The package also includes a JQL builder to help construct issue search queries. Use it to filter issues by project, status, assignee, and more:

$query = (new \TestMonitor\Jira\Builders\JQL\JQL)
    ->where(\TestMonitor\Jira\Builders\JQL\Field::PROJECT, 'KEY')
    ->where(\TestMonitor\Jira\Builders\JQL\Field::STATUS, \TestMonitor\Jira\Builders\JQL\Operator::NOT_IN, ['Done', 'Cancelled'])
    ->orderBy(\TestMonitor\Jira\Builders\JQL\Field::CREATED, 'DESC');

$issues = $jira->issues($query);

The when method allows you to conditionally add clauses, which is useful when building queries from user input:

$query = (new \TestMonitor\Jira\Builders\JQL\JQL)
    ->where(\TestMonitor\Jira\Builders\JQL\Field::PROJECT, 'KEY')
    ->when($assignee, function ($jql, $value) {
        $jql->where(\TestMonitor\Jira\Builders\JQL\Field::ASSIGNEE, $value);
    });

$issues = $jira->issues($query);

Tests

The package contains integration tests. You can run them using PHPUnit.

$ vendor/bin/phpunit

Changelog

Refer to CHANGELOG for more information.

Contributing

Refer to CONTRIBUTING for contributing details.

Credits

License

The MIT License (MIT). Refer to the License for more information.

testmonitor/jira-client 适用场景与选型建议

testmonitor/jira-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.94k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2019 年 11 月 20 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「client」 「jira」 「testmonitor」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 testmonitor/jira-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 testmonitor/jira-client 我们能提供哪些服务?
定制开发 / 二次开发

基于 testmonitor/jira-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 8.94k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 21
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 2
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-11-20