mogman1/jenkins-web-api
Composer 安装命令:
composer require mogman1/jenkins-web-api
包简介
PHP library for communicating with the Jenkins web API.
README 文档
README
I only noticed, somewhat sheepishly, that there were two other Jenkins PHP libraries already out there by the time I finished my work on this. Admittedly, at present this library doesn't break any new ground, it provides an API for reading the most common data from Jenkins in addition to being able to trigger remote builds. Future releases already in the works will allow creating new objects on Jenkins (like jobs), as well as reading them.
Currently, the following data objects are supported:
- Job
- Build
- Node
- Queue Item
- View
Installation
This package can be installed using composer:
"require": {
"mogman1/jenkins-web-api": "1.*"
}
Usage
All implementations of ApiObject use the Jenkins class to communicate with your Jenkins server, with the actual connection information managed by the Http class:
use mogman1\Jenkins\Jenkins use mogman1\Jenkins\Server\Http $http = new Http("http://jenkins-server", "jenkinsUsername", "userAccessToken"); $jenkins = new Jenkins($http);
The library assumes that Jenkins' CSRF crumb tokens are being used and automatically fetches a crumb for each request (a future release will check if crumbs are being used and change behaviour accordingly).
The Jenkins class can be used to fetch top-level information, such as info on the Views available, the Jenkins Node, or available Jobs.
$node = $jenkins->getNodeInfo(); foreach ($node->jobs as $job) { echo $job->name."\n"; echo $job->url."\n"; echo $job->color."\n"; }
When objects are returned as part of information obtained from other objects, like the jobs returned from the Node object, they are usually in reduced-info state to minimize calls to Jenkins for information until you really need it. The get all fields available for that object, or simply to fetch the latest from the server, use the update() method:
$job->update(); //access to additional fields, such as past builds foreach ($job->builds as $build) { echo $build->number."\n"; }
You can also directly fetch a job you already know the name of, which will come back with all information already loaded (no need to call update()).
$job = $jenkins->getJob("jenkins-web-api"); //go crazy
Job objects are also capable of triggering builds. If you have parameters enabled for your job, you can pass them in as an array. If your job requires the additional authentication token, you'll need to pass this in as one of the parameters. The return value here is a QueueItem because Jenkins doesn't create an actual build right away (see this comment from the Jenkins issue tracker).
Getting information on the build you triggered can require some shenanigans. Generally a queue item is stuck in a Jenkins queue for a several seconds before being acted on by Jenkins, so you'll have to poll this object until the build becomes available under QueueItem::$executable. However, please note that eventually queued items get removed from the Jenkins queue and you won't be able to fetch data on it anymore (you'll get a 404 response which triggers an exception). My experience is that it you have plenty of time before it goes away, but keep that in mind.
$queueItem = $job->triggerBuild(array('token' => "secret", 'param1' => "val1")); $build = null; try { while (!$queueItem->executable) { $queueItem->update() sleep(1); } $build = $queueItem->executable; } catch (JenkinsConnectionException $e) { //couldn't get build info } echo $build->getConsoleLog();
Finally, you can run a query directly against the Jenkins server with the get() method on the Jenkins class. The first parameter is the path to query on the server, and the second is an associative array of any parameters you might wish to submit with your request. The return type is HttpResponse:
$httpResponse = $jenkins->get("/job/your-job", array()); echo $httpResponse->getBody();
For everything else, take a look at the code. All methods and properties have been commented to explain what they do (to the best of my knowledge at the time). Please feel free to get in contact with me for feature requests, bug fixes, or anything else.
Looking Forward
There are a few areas that I know will have interface-breaking changes sooner than later:
- Users
- Health Report (Job)
- Action (multiple classes)
- Property (Job)
Basically any place where an array is being returned, I'm hoping to be able to convert into full-on objects once I understand the what's being returned from Jenkins better.
mogman1/jenkins-web-api 适用场景与选型建议
mogman1/jenkins-web-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.35k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2014 年 06 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「ci」 「jenkins」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 mogman1/jenkins-web-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mogman1/jenkins-web-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mogman1/jenkins-web-api 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Jenkins API
A collection of our critical PHP tools
Display a version number
This bundle provides functionality for Continuous Integration & Automated Deployments for Symfony-based projects
A PSR-7 compatible library for making CRUD API endpoints
Jenkins PHP API client
统计信息
- 总下载量: 2.35k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-06-14