定制 paragraf-lex/viber-bot 二次开发

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

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

paragraf-lex/viber-bot

Composer 安装命令:

composer require paragraf-lex/viber-bot

包简介

Viber bot for PHP for Laravel

README 文档

README

Latest Version StyleCI

Installation

This package can be installed through Composer.

composer require paragraf-lex/viber-bot

In Laravel 5.5 and above the package will autoregister the service provider. In Laravel 5.4 you must install this service provider.

// config/app.php
'providers' => [
    ...
    Paragraf\ViberBot\ViberBotServiceProvider::class,
    ...
];

Changelog

Please see CHANGELOG for more information what has changed recently.

Configuration

You need to set in .env and setup webhook.

Env

VIBERBOT_API=your_viber_token
VIBERBOT_NAME=name
VIBERBOT_PHOTO=photo

You can find Viber token on Viber Partners after creating bot on Info tab.

WebHook

You must run artisan command for webhoook with url parameter

php artisan viber-bot:webhook https://example-url.com/some-route

Note: It must be full url and must be HTTPS.

Config file

Optionally, you can publish the config file of this package with this command:

php artisan vendor:publish --provider="Paragraf\ViberBot\ViberBotServiceProvider"

The following config file will be published in config/viberbot.php

Usage

When the installation is done you have access to Bot and Client class.

Bot class

With bot class you naivgate your ViberBot how to work.

(new Bot($request, new TextMessage()))
  ->on(new MessageEvent($request->timestamp, $request->message_token, 
  new ViberUser($request->sender['id'],$request->sender['name']), $request->message))
  ->hears("Hi!")
  ->replay("Hello World!")
  ->send();

Note: If viber user not set name you will get error.

You can change responding type Message and Event who listen that event.

API Accept Description
on(new MessageEvent(...)) Event object Listen specific Event
hears("Hi!") string, array, regex ViberBot listen key word Hi!, can be array for more words for one event
body($callback) callback ViberBot can do some business logic.
replay("Hello World!") string, array, Model ViberBot respond with Hello World!, can be array or Model
send() --- Send respond to Viber server.

List of Events:

  • ConversationStartedEvent
  • DeliveredEvent
  • FailedEvent
  • MessageEvent
  • SeenEvent
  • SubscribedEvent
  • UnsubscribedEvent

Note: If you don't want to listen all events you can change event_types in config/viberbot.php. If you change you must run again php artisan viber-bot:webhook your-url in oreder to apply changes.

List of Messages:

  • TextMessage
  • BroadcastMessage
  • ContactMessage
  • FileMessage
  • KeyboardMessage
  • LocationMessage
  • PictureMessage
  • StickerMessage
  • URLMessage
  • VideoMessage
  • WelcomeMessage
  • CarouselMessage - ToDo

Client class

Client class, provide to you extra utility.

 (new Client())->broadcast('Hello', User::all(), 'viber_id');
API Description
broadcast($text, $model, $method) Broadcast message to all subscribed user on Viber Chat, 300 users per request.
getUserDetails($user_id) Get details for specific user
getOnlineStatus(array $viberIds) Get online statuses for users, 100 users per request
getAccountInfo() Get account information (Your Public Account)
removeWebhook() Remove WebHook

Note: $method in broadcast() must point to viber_id. Also getOnlineStatus() need viber_ids.

If you want more information about Viber API or how something works check Viber REST API

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email nemanja.ivankovic@paragraf.rs instead of using the issue tracker.

Credits

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-01-08

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固