README.md 8.6 KB
Newer Older
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
1
![Wechaty](https://raw.githubusercontent.com/zixia/wechaty/master/images/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
[![npm version](https://badge.fury.io/js/wechaty.svg)](https://badge.fury.io/js/wechaty)
13 14
[![Downloads][downloads-image]][downloads-url]

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
15
# Why
16
My daily life/work depends on too much chat on wechat.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
17
* 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 (李卓桓) 已提交
18 19 20 21
* 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 (李卓桓) 已提交
22
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 (李卓桓) 已提交
23 24

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

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

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
34
bot.init()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
35
.then(bot.getLoginQrImgUrl.bind(bot))
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
36
.then(url => console.log(`Scan qrcode in url to login: \n${url}`))
Huan (李卓桓)'s avatar
links  
Huan (李卓桓) 已提交
37

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
38 39
bot.on('message', m => {
  console.log('RECV: ' + m.get('content'))  // 1. print received message
Huan (李卓桓)'s avatar
links  
Huan (李卓桓) 已提交
40

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
41 42 43 44 45 46 47 48 49
  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 (李卓桓) 已提交
50
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 (李卓桓) 已提交
51

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
52
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 (李卓桓) 已提交
53

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
54
## 2. Advanced: 50 lines
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
55
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 (李卓桓) 已提交
56

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

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
62
# Installation
63
Use NPM is recommended to install Wechaty for you:
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
64 65
```shell
npm install --save wechaty
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
66 67
```

68 69 70 71 72
## Start from strach
In case that you do not know anything about nodejs, the follow instructions would help you to run Wechaty bot on your machine.

## 1. Install NodeJS
NodeJS Version 6.0 & above is required.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
73

74 75 76 77 78 79 80
1. Visit [NodeJS](https://nodejs.org)
1. Download NodeJS Installer(i.e. "v6.2.0 Current")
1. Run Installer to install NodeJS to your machine

## 2. Checkout Wechaty
Use `git` to checkout Wechaty source code from [Github.com](https://github.com)
```shell
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
81
git clone https://github.com/zixia/wechaty.git
82 83 84 85 86 87 88 89 90 91 92 93
```

## 3. Install Dependents
```shell
cd wechaty
npm install
```

## 4. Run Demo Bot
```shell
npm start
```
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
94
This will run `node example/ding-dong-bot.js`
95 96 97 98 99 100 101

# 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 (李卓桓) 已提交
102 103
# Requirement

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

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
106
# API Refference
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
107 108

## Class Wechaty
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
109
Main bot class.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
110 111

```javascript
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
112
const bot = new Wechaty()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
113 114 115 116 117 118
```

### Wechaty.init()
Initialize the bot, return Promise.
```javascript
bot.init()
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
119 120 121
.then(() => {
  // do other staff with bot here
}
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
```

### Wechaty.getLoginQrImgUrl()
Get the login QrCode image url. Must be called after init().  

Return a Promise, for url link.

```javascript
bot.getLoginQrImgUrl()
.then(url => {
  // show url
})
```
### Event: `message`
Emit when there's a new message.
```javascript
bot.on('message', callback)
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
140
Callback will get an instance of Message Class. (see `Class Message`)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
141 142 143

### Event: `login` & `logout`

144 145
1. After the bot login full successful, the event `login` will be emitted.
1. After the bot logout, the event `logout` will be emitted.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
146 147

## Class Message
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
148
All messages will be encaped in Message.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
149 150

### Message.ready()
151
A message may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
152 153 154 155 156 157 158 159 160 161

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

```javascript
message.ready()
.then(() => {
  // Here we can be sure all the data is ready for use.
})
```
### Message.get(prop)
162
Get prop from a message.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
163 164

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
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!')
```
## Class Contact

### Contact.ready()
188
A Contact may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
189 190 191 192 193 194 195 196 197 198

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

```javascript
contact.ready()
.then(() => {
  // Here we can be sure all the data is ready for use.
})
```
### Contact.get(prop)
199
Get prop from a contact.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
200 201

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
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')
```

## Class Group

### Group.ready()
219
A group may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
220 221 222 223 224 225 226 227 228 229 230

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.
})
```

### Group.get(prop)
231
Get prop from a group.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
232 233

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
235 236 237 238 239 240 241 242 243 244 245
1. `id` :String
1. `name` :String
1. `members` :Array
    1. `contact` :Contact
    1. `name` :String

```javascript
group.get('members').length
```

# Test
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
246
Wechaty use [TAP protocol](http://testanything.org/) to test itself by [tape](https://github.com/substack/tape).
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
247

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
248
To test Wechaty, run:
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
249 250 251 252
```bash
$ npm test
```

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
253 254
Know more about tape: [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
Huan (李卓桓) 已提交
255 256 257
# Version History

## v0.0.5 (2016/5/11)
258
1. Receive & send message
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
259 260
1. Show contacts info
1. Show groups info
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
261
1. 1st usable version
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
262
1. Start coding from May 1st 2016
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
263 264 265 266

# Todo List
1. Deal with friend request
1. Manage contacts(send friend request/delete contact etc.)
Huan (李卓桓)'s avatar
readme  
Huan (李卓桓) 已提交
267 268

Everybody is welcome to issue your needs.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
269 270 271 272 273 274

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

# Contributing
* Lint: eslint
Huan (李卓桓)'s avatar
readme  
Huan (李卓桓) 已提交
275

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
276 277 278
    ```bash
    $ npm lint
    ```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
279
* Create an issue, fork, then send a pull request(with unit test please).
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
280

281
# See Also
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
282 283 284 285 286 287 288 289

## 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): 微信个人号接口(支持文件、图片上下载)、微信机器人及命令行微信。三十行即可自定义个人号机器人
290

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303
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
304

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