serafim/gitter-api 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

serafim/gitter-api

Composer 安装命令:

composer require serafim/gitter-api

包简介

Gitter async api

README 文档

README

Latest Stable Version https://travis-ci.org/SerafimArts/gitter-api Scrutinizer Code Quality License Total Downloads

Installation

composer require serafim/gitter-api

Creating a Gitter Client

use Gitter\Client;

$client = new Client($token); 
// OR
$client = new Client($token, $logger); // $logger are instance of \Psr\Log\LoggerInterface

// ... SOME ACTIONS ...

$client->connect(); // Locks current runtime and starts an EventLoop (for streaming requests)

Resources

// $client = new \Gitter\Client('token');

$client->groups;   // Groups resource (Traversable)
$client->messages; // Messages resource
$client->rooms;    // Rooms resource (Traversable)
$client->users;    // Users resource

Example

foreach ($client->rooms as $room) {
    var_dump($room);
}

Streaming

$observer = $client->rooms->messages('roomId'); // Observer

$observer->subscribe(function ($message) {
    var_dump($message);
});

// Connect to stream!
$client->connect();

Available resources

Groups

List groups the current user is in.

  • $client->groups->all(): array

List of rooms nested under the specified group.

  • $client->groups->rooms(string $roomId): array

Messages

List of messages in a room in historical reversed order.

  • $client->messages->all(string $roomId[, string $query]): \Generator

There is also a way to retrieve a single message using its id.

  • $client->messages->find(string $roomId, string $messageId): array

Send a message to a room.

  • $client->messages->create(string $roomId, string $content): array

Update a message.

  • $client->messages->update(string $roomId, string $messageId, string $content): array

Delete a message.

  • $client->messages->delete(string $roomId, string $messageId): array

Rooms

List rooms the current user is in.

  • $client->rooms->all([string $query]): array

Join user into a room.

  • $client->rooms->joinUser(string $roomId, string $userId): array

Join current user into a room.

  • $client->rooms->join(string $roomId): array

Join current user into a room by room name (URI).

  • $client->rooms->joinByName(string $name): array

Find room by room name (URI).

  • $client->rooms->findByName(string $name): array

Kick user from target room.

  • $client->rooms->kick(string $roomId, string $userId): array

This can be self-inflicted to leave the the room and remove room from your left menu.

  • $client->rooms->leave(string $roomId): array

Sets up a new topic of target room.

  • $client->rooms->topic(string $roomId, string $topic): array

Sets the room is indexed by search engines.

  • $client->rooms->searchIndex(string $roomId, bool $enabled): array

Sets the tags that define the room

  • $client->rooms->tags(string $roomId, array $tags): array

If you hate one of the rooms - you can destroy it!

  • $client->rooms->delete(string $roomId): array

List of users currently in the room.

  • $client->rooms->users(string $roomId[, string $query]: \Generator

Use the streaming API to listen events.

  • $client->rooms->events(string $roomId): Observer

Use the streaming API to listen messages.

  • $client->rooms->messages(string $roomId): Observer

Users

Returns the current user logged in.

  • $client->users->current(): array
  • $client->users->currentUserId(): string

List of Rooms the user is part of.

  • $client->users->rooms([string $userId]): array

You can retrieve unread items and mentions using the following endpoint.

  • $client->users->unreadItems(string $roomId[, string $userId]): array

There is an additional endpoint nested under rooms that you can use to mark chat messages as read

  • $client->users->markAsRead(string $roomId, array $messageIds[, string $userId]): array

List of the user's GitHub Organisations and their respective Room if available.

  • $client->users->orgs([string $userId]): array

List of the user's GitHub Repositories and their respective Room if available.

  • $client->users->repos([string $userId]): array

List of Gitter channels nested under the user.

  • $client->users->channels([string $userId]): array

Custom WebHook Notifications

Create a "Custom Webhook":

  • Open your chat
  • Click on "Room Settings" button
  • Click on "Integrations"
  • Select "Custom"
  • Remember yor Hook Id, like 2b66cf4653faa342bbe8 inside https://webhooks.gitter.im/e/ url.
$client->notify($hookId)
    // ->error($message) - Send "Error" message
    // ->info($message) - Send "Info" message
    // ->withLevel(...) - Sets up level
    ->send('Your message with markdown'); // Send message with markdown content

Custom routing

$route = Route::get('rooms/{roomId}/chatMessages')
    ->with('roomId', $roomId)
    ->toStream();
    
// Contains "GET https://stream.gitter.im/v1/rooms/.../chatMessages" url

$client->viaStream()->request($route)->subscribe(function($message) {
     var_dump($message);
    // Subscribe on every message in target room (Realtime subscribtion)
});

$client->connect();

Available route methods:

  • Route::get(string $route) - GET http method
  • Route::post(string $route) - POST http method
  • Route::put(string $route) - PUT http method
  • Route::patch(string $route) - PATCH http method
  • Route::delete(string $route) - DELETE http method
  • Route::options(string $route) - OPTIONS http method
  • Route::head(string $route) - HEAD http method
  • Route::connect(string $route) - CONNECT http method
  • Route::trace(string $route) - TRACE http method

Route arguments:

  • $route->with(string $key, string $value) - Add route or GET query parameter
  • $route->withMany(array $parameters) - Add route or GET query parameters
  • $route->withBody(string $key, string $value) - Add POST, PUT, DELETE, etc body parameter

See more info about API into Documentation

serafim/gitter-api 适用场景与选型建议

serafim/gitter-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 226 次下载、GitHub Stars 达 15, 最近一次更新时间为 2016 年 01 月 22 日, 在 PHP 生态内属于活跃度较高的组件。

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

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

围绕 serafim/gitter-api 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

  • 总下载量: 226
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 15
  • 点击次数: 4
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 15
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-01-22