README.md 10.8 KB
Newer Older
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
1
![Wechaty](https://raw.githubusercontent.com/zixia/wechaty/master/image/wechaty-logo-en.png)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
2
# Wechaty [![Circle CI](https://circleci.com/gh/zixia/wechaty.svg?style=svg)](https://circleci.com/gh/zixia/wechaty) [![Build Status](https://travis-ci.org/zixia/wechaty.svg?branch=master)](https://travis-ci.org/zixia/wechaty)
3
Wechaty is a Bot-Enable Framework/Library for Personal Account of Wechat.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
4

5 6 7
> Easy creating personal account wechat robot code in 10 lines.

**Connecting Bots**
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
8

T
The Gitter Badger 已提交
9
[![Join the chat at https://gitter.im/zixia/wechaty](https://badges.gitter.im/zixia/wechaty.svg)](https://gitter.im/zixia/wechaty?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
10
[![node](https://img.shields.io/node/v/wechaty.svg?maxAge=2592000)](https://nodejs.org/)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
11
[![Repo Size](https://reposs.herokuapp.com/?path=zixia/wechaty)]()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
12
[![Coverage Status](https://coveralls.io/repos/github/zixia/wechaty/badge.svg?branch=master)](https://coveralls.io/github/zixia/wechaty?branch=master)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
13
[![npm version](https://badge.fury.io/js/wechaty.svg)](https://badge.fury.io/js/wechaty)
14 15
[![Downloads][downloads-image]][downloads-url]

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
16
# Why
17
My daily life/work depends on too much chat on wechat.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
18
* I almost have 14,000 wechat friends till May 2014, before wechat restricts a total number of friends to 5,000.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
19 20 21 22
* I almost have 400 wechat groups that most of them have more than 400 members.

Can you image that? I'm dying...

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
23
So a tireless bot working for me 24x7 on wechat, moniting/filtering the most important message is badly needed. For example: highlights discusstion which contains the KEYWORDS I want to follow up(especially in a noisy group). ;-)
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
24 25

# Examples
Huan (李卓桓)'s avatar
v0.0.6  
Huan (李卓桓) 已提交
26
Wechaty is super easy to use: 10 lines of javascript is enough for your first wechat robot.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
27

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
28
## 1. Basic: 10 lines
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
29
The following 10 lines of code implement a bot who reply "roger" for every message received:
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
30

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
31
```javascript
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
32
const Wechaty = require('wechaty')
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
33
const bot = new Wechaty()
Huan (李卓桓)'s avatar
links  
Huan (李卓桓) 已提交
34

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
35
bot.init()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
36 37 38 39
.on('scan', ({url, code}) => {
  console.log(`Scan qrcode in url to login: ${code}\n${url}`)
})
.on('message', m => {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
40
  console.log('RECV: ' + m.get('content'))  // 1. print received message
Huan (李卓桓)'s avatar
links  
Huan (李卓桓) 已提交
41

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
42 43 44 45 46 47 48 49 50
  const reply = new Wechaty.Message()       // 2. create reply message
  .set('to', m.get('from'))                 //    1) set receipt
  .set('content', 'roger.')                 //    2) set content

  bot.send(reply)                           // 3. do reply!
  .then(() => console.log('REPLY: roger.')) // 4. print reply message
})
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
51
Notice that you need to wait a moment while bot trys to get the login QRCode from Wechat. As soon as the bot gets login QRCode url, he will print url out. You need to scan the qrcode on wechat, and confirm login.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
52

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
53
After that, bot will be on duty. (roger-bot source can be found at [here](https://github.com/zixia/wechaty/blob/master/example/roger-bot.js))
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
54

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
55
## 2. Advanced: 50 lines
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
56
There's another basic usage demo bot named [ding-dong-bot](https://github.com/zixia/wechaty/blob/master/example/ding-dong-bot.js), who can reply _dong_ when bot receives a message _ding_.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
57

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
58
## 3. Hardcore: 100 lines
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
59
To Be Written.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
60

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
61
Plan to glue with Machine Learning/Deep Learning/Neural Network/Natural Language Processing.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
62

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
63
# Installation
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
64

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
65
# Install from NPM
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
66
Use NPM is recommended to install a stable version of Wechaty published on NPM.com
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
67 68
```shell
npm install --save wechaty
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
69 70
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
71
Then you are set.
72

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
73 74
# Install from Github(for hack)
In case that you want to dive deeper into Wechaty, fork & clone to run Wechaty bot on your machine, and start hacking.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
75

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
76 77 78 79
## 1. Install Node.js
Node.js Version 6.0 or above is required.

1. Visit [Node.js](https://nodejs.org)
80 81 82
1. Download NodeJS Installer(i.e. "v6.2.0 Current")
1. Run Installer to install NodeJS to your machine

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
83 84 85
## 2. Fork & Clone Wechaty

If you have no github account, you can just clone it via https:
86
```shell
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
87
git clone https://github.com/zixia/wechaty.git
88
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
89
This will clone wechaty source code to your current directory.
90

91
## 3. Run Demo Bot
92
```shell
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
93 94
cd wechaty
npm install
95 96
npm start
```
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
97
This will run `node example/ding-dong-bot.js`
98

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
99 100 101 102 103 104 105
After a little while, bot will show you a message of a url for Login QrCode. You need to scan this qrcode in your wechat in order to permit your bot login.

## 4. Done

Enjoy hacking Wechaty!
Please submit your issue if you have any, and a fork & pull is very welcome for showing your idea.

106 107 108 109 110 111
# Trouble Shooting
If wechaty is not run as expected, run unit test maybe help to find some useful message.
```shell
npm test
```

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
112 113
# Requirement

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
114
ECMAScript2015(ES6). I develop and test wechaty with Node.js v6.0.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
115

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
116
# API Refference
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
117

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
118
I'll try my best to keep the api as sample as it can be.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
119

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
120 121 122 123 124
## Events

### 1. Event: `scan`

A `scan` event will be emitted when the bot need to show you a QrCode for scaning.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
125 126

```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
127 128 129
bot.on('scan', ({code, url}) => {
  console.log(`[${code}] Scan ${url} to login.` )
})
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
130 131
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
132 133 134 135 136 137
1. url: {String} the qrcode image url
2. code: {Number} the scan status code. some known status of the code list here is:
    1. 0    initial
    2. 408  wait for scan
    3. 201  scaned, wait for confirm
    4. 200  login confirmed
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
138

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
139
`scan` event will be emit when it will detect a new code status change.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
140

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
141 142 143
### 2. Event: `login`

After the bot login full successful, the event `login` will be emitted, with a [Contact](#class-contact) of current logined user.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
144
```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
145 146
bot.on('login', user => {
  console.log(`user ${user} logined`)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
147 148
})
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
149 150 151 152
### 3. Event: `logout`
`logout` will be emitted when bot detected it is logout.

### 4. Event: `message`
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
153 154
Emit when there's a new message.
```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
155 156 157
bot.on('message', message => {
  console.log('message ${message} received')
})
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
158
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
159
The `message` here is a [Message](#class-message).
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
160

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
161 162
## Class Wechaty
Main bot class.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
163

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
164 165 166
```javascript
const bot = new Wechaty()
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
167

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
168 169
### Wechaty.init()
Initialize the bot, return Promise.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
170
```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
171
bot.init()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
172
.then(() => {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
173 174
  // do other staff with bot here
}
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
175
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
176 177 178 179

## Class Message
All wechat messages will be encaped as a Message.

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
180
### Message.get(prop)
181
Get prop from a message.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
182 183

Supported prop list:
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
184

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
1. `id` :String
1. `from` :Contact
1. `to` :Contact
1. `content` :String
1. `group` :Group
1. `date` :Date

```javascript
message.get('content')
```

### Message.set(prop, value)
Set prop to value for a message.

Supported prop list: the same as `get(prop)`

```javascript
message.set('content', 'Hello, World!')
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
205 206
### Message.ready()
A message may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
207 208 209 210

Return a Promise, will be resolved when all data is ready.

```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
211
message.ready()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
212 213 214 215
.then(() => {
  // Here we can be sure all the data is ready for use.
})
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
216 217 218

## Class Contact

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
219
### Contact.get(prop)
220
Get prop from a contact.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
221 222

Supported prop list:
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
223

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236
1. `id` :String
1. `weixin` :String
1. `name` :String
1. `remark` :String
1. `sex` :Number
1. `province` :String
1. `city` :String
1. `signature` :String

```javascript
contact.get('name')
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
237 238
### Contact.ready()
A Contact may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
239 240 241 242

Return a Promise, will be resolved when all data is ready.

```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
243
contact.ready()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
244 245 246 247 248
.then(() => {
  // Here we can be sure all the data is ready for use.
})
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
249 250 251
## Class Group


Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
252
### Group.get(prop)
253
Get prop from a group.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
254 255

Supported prop list:
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
256

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
257 258 259 260 261 262 263 264 265
1. `id` :String
1. `name` :String
1. `members` :Array
    1. `contact` :Contact
    1. `name` :String

```javascript
group.get('members').length
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
266 267 268 269 270 271 272 273 274 275 276
### Group.ready()
A group may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.

Return a Promise, will be resolved when all data is ready.

```javascript
group.ready()
.then(() => {
  // Here we can be sure all the data is ready for use.
})
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
277 278

# Test
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
279
Wechaty use [TAP protocol](http://testanything.org/) to test itself by [tap](http://www.node-tap.org/).
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
280

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
281
To test Wechaty, run:
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
282 283
```shell
npm test
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
284 285
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
286
Know more about TAP: [Why I use Tape Instead of Mocha & So Should You](https://medium.com/javascript-scene/why-i-use-tape-instead-of-mocha-so-should-you-6aa105d8eaf4#.qxrrf2938)
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
287

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
288 289
# Version History

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
290
## v0.0.10 (2016/5/28)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
291
1. use event `scan` to show login qrcode image url(and detect state change)
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
292
2. new examples: Tuling123 bot & api.AI bot
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
293
3. more unit tests
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
294
4. code coverage status
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
295

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
296
## v0.0.5 (2016/5/11)
297
1. Receive & send message
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
298 299
1. Show contacts info
1. Show groups info
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
300
1. 1st usable version
301
1. Start coding from May 1st 2016
Huan (李卓桓)'s avatar
readme  
Huan (李卓桓) 已提交
302

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
303
# Todo List
304

Huan (李卓桓)'s avatar
todo  
Huan (李卓桓) 已提交
305
- [ ] Contact
306 307 308
    - [ ] Accept a friend request
    - [ ] Send a friend request
    - [ ] Delete a contact
Huan (李卓桓)'s avatar
todo  
Huan (李卓桓) 已提交
309
- [ ] Chat Group
310 311 312
    - [ ] Create a new chat group
    - [ ] Invite people to join a existing chat group
    - [ ] Rename a Chat Group
Huan (李卓桓)'s avatar
todo  
Huan (李卓桓) 已提交
313
- [ ] Events
314 315 316 317 318 319 320 321 322
    - [ ] Use EventEmitter2 to emit message events, so we can use wildcard
        1. `message`
        2. `message.recv`
        3. `message.sent`
        4. `message.recv.image`
        5. `message.sent.image`
        6. `message.recv.sys`
        1. `message.**.image`
        1. `message.recv.*`
Huan (李卓桓)'s avatar
todo  
Huan (李卓桓) 已提交
323
- [ ] Message
324
    - [ ] Send/Reply image message
Huan (李卓桓)'s avatar
todo  
Huan (李卓桓) 已提交
325
    
Huan (李卓桓)'s avatar
readme  
Huan (李卓桓) 已提交
326
Everybody is welcome to issue your needs.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
327 328 329 330 331 332 333 334 335

# Known Issues & Support
Github Issue - https://github.com/zixia/wechaty/issues

# Contributing
* Lint: eslint
    ```bash
    $ npm lint
    ```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
336
* Create an issue, fork, then send a pull request(with unit test please).
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
337

338
# See Also
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
339 340 341 342 343 344 345 346

## Javascript
1. [Weixinbot](https://github.com/feit/Weixinbot) Nodejs 封装网页版微信的接口,可编程控制微信消息

## Python
1. [WeixinBot](https://github.com/Urinx/WeixinBot) *Very well documented* 网页版微信API,包含终端版微信及微信机器人
1. [wxBot](https://github.com/liuwons/wxBot): Wechat Bot API
1. [ItChat](https://github.com/littlecodersh/ItChat): 微信个人号接口(支持文件、图片上下载)、微信机器人及命令行微信。三十行即可自定义个人号机器人
347

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
348 349 350
## Apps
1. [助手管家](http://72c.me/a/m/yhmhrh) It's a Official Account of wechat, which can manage your personal wechat account as a robot assistant.

351 352 353 354 355
## Bot API Service
1. [IBM Watson Dialog Service](http://www.ibm.com/smarterplanet/us/en/ibmwatson/developercloud/doc/dialog/) a comprehensive, robust, platform for managing conversations between virtual agents and users through an application programming interface (API)
2. [API.ai](https://api.ai) Build conversational user interfaces
1. [Wit.ai](https://wit.ai) Turn user input into action

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
356 357 358 359 360 361 362 363 364 365 366 367 368
Author
-----------------
Zhuohuan LI <zixia@zixia.net> (http://linkedin.com/in/zixia)

<a href="http://stackoverflow.com/users/1123955/zixia">
<img src="http://stackoverflow.com/users/flair/1123955.png" width="208" height="58" alt="profile for zixia at Stack Overflow, Q&amp;A for professional and enthusiast programmers" title="profile for zixia at Stack Overflow, Q&amp;A for professional and enthusiast programmers">
</a>

Copyright & License
-------------------
* Code & Docs 2016© zixia
* Code released under the ISC license
* Docs released under Creative Commons
369

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
370 371
[downloads-image]: http://img.shields.io/npm/dm/wechaty.svg?style=flat-square
[downloads-url]: https://npmjs.org/package/wechaty