定制 wildphp/irc-messages 二次开发

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

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

wildphp/irc-messages

最新稳定版本:v0.3.1

Composer 安装命令:

composer require wildphp/irc-messages

包简介

IRC messages implementation for WildPHP

README 文档

README

Build Status Scrutinizer Code Quality Scrutinizer Code Coverage Latest Stable Version Latest Unstable Version Total Downloads

Implementation of various IRC messages designed for WildPHP.

Installation

To install this package, you need Composer.

$ composer require wildphp/irc-messages ^0.1

Usage

These messages can be used standalone without usage of any other utilities. For example:

// Privmsg(string $channel, string $message)
$privmsg = new Privmsg('#channel', 'This is a message');

$rawMessage = (string) $privmsg; //: "PRIVMSG #channel :This is a message" + "\r\n" 

IncomingMessage instances may be created from parsed messages, which is useful if you just want a generic representation of the message. These can be casted into specialized objects if the message type implements IncomingMessageInterface.

// IncomingMessage(string $prefix, string $verb, array $args)
$incoming = new IncomingMessage('nickname!username@hostname', 'PRIVMSG', ['This is a message']);

$privmsg = Privmsg::fromIncomingMessage($incoming);

A utility class is provided which tries to find the most appropriate class to specialize messages to.

$incoming = new IncomingMessage('nickname!username@hostname', 'PRIVMSG', ['This is a message']);

$privmsg = MessageCaster::castMessage($incoming);

// $privmsg is now an object of the Privmsg class.

Numeric messages are stored in the RPL directory under their official name, because PHP does not support numeric class names. You can use the RplTranslateEnum class to translate numeric verbs into the corresponding class names. Make sure to pass the numerics as strings to account for leading zeroes. A numeric like '3' will not be accepted.

$topicClass = RplTranslateEnum::translateNumeric('332');

// $topicClass is now '\WildPHP\Messages\RPL\Topic'

Implemented messages

Messages can be implemented as incoming or outgoing messages.

An incoming message may be converted from an IncomingMessage class.

An outgoing message may be converted to a string in order to send it to an IRC server.

Name As incoming? As outgoing? Extra's?
001/RPL_WELCOME x
005/RPL_ISUPPORT x
332/RPL_TOPIC x
353/RPL_NAMREPLY x
354/RPL_WHOSPCRPL x
366/RPL_ENDOFNAME x
ACCOUNT x
AUTHENTICATE x x
AWAY x x
CAP x x
ERROR x
JOIN x x extended-join support for incoming messages
KICK x x
MODE x x
NAMES x
NICK x x
NOTICE x x
PART x x
PASS x
PING x x
PONG x x
PRIVMSG x x
QUIT x x
REMOVE x
TOPIC x x
USER x x
VERSION x
WHO x x
WHOIS x
WHOWAS x

Contributors

You can see the full list of contributors in the GitHub repository.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-11-07

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固