README.md 18.2 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

3
# Wechaty [![Linux Circle CI](https://circleci.com/gh/zixia/wechaty.svg?style=svg)](https://circleci.com/gh/zixia/wechaty) [![Linux Build Status](https://travis-ci.org/zixia/wechaty.svg?branch=master)](https://travis-ci.org/zixia/wechaty) [![Win32 Build status](https://ci.appveyor.com/api/projects/status/60fgkemki7e6upb9?svg=true)](https://ci.appveyor.com/project/zixia/wechaty)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
4

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
5
Connecting ChatBots.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
6

7
Wechaty is a Bot Framework for Wechat **Personal** Account.
8

Huan (李卓桓)'s avatar
v0.2.0  
Huan (李卓桓) 已提交
9
> Easy creating personal wechat bot in 9 lines of code.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
10

11
It supports [linux](https://travis-ci.org/zixia/wechaty), [win32](https://ci.appveyor.com/project/zixia/wechaty) and [darwin(OSX/Mac)](https://travis-ci.org/zixia/wechaty).
12

T
The Gitter Badger 已提交
13
[![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 (李卓桓) 已提交
14
[![node](https://img.shields.io/node/v/wechaty.svg?maxAge=2592000)](https://nodejs.org/)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
15
[![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 (李卓桓) 已提交
16
[![npm version](https://badge.fury.io/js/wechaty.svg)](https://badge.fury.io/js/wechaty)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
17 18 19
[![dependency status][dependency-image]][dependency-url]
[![dev dependency status][dev-dependency-image]][dev-dependency-url]
[![Repo Size](https://reposs.herokuapp.com/?path=zixia/wechaty)]()
20 21
[![Downloads][downloads-image]][downloads-url]

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
22

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
23 24
# Voice of the Developer

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
25 26 27
> @GasLin : it may be the best wecaht sdk i have seen in github! [link](https://github.com/zixia/wechaty/issues/8#issuecomment-228971491)

> @ak5 : Thanks for this it's quite cool! [link](https://github.com/zixia/wechaty/issues/4)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
28

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
29 30
> @ccaapton : wechaty library looks fantastic! [link](https://github.com/zixia/wechaty/issues/9)

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
31
> @kinhunt : very cool project. [link](https://github.com/zixia/wechaty/issues/6)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
32

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
33
# Examples
34
Wechaty is dead easy to use: 7 lines javascript for your 1st wechat bot.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
35

36 37
## 1. Basic: 7 lines
The following 7 lines of code implement a bot log all message to console:
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
38

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
39
```javascript
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
40
const Wechaty = require('wechaty')
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
41
const bot = new Wechaty()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
42

43 44 45
bot
.on('scan', ({url, code}) => console.log(`Scan QrCode to login: ${code}\n${url}`))
.on('login',         user => console.log(`User ${user} logined`))
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
46
.on('message',    message => console.log(`Message: ${message}`))
47
.init()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
48 49
```

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 55
## 2. Advanced: dozens of lines
Here's an chatbot [ding-dong-bot](https://github.com/zixia/wechaty/blob/master/example/ding-dong-bot.js) who can reply _dong_ when receives a message _ding_.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
56

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
57 58
## 3. Hardcore: hundreds of lines
Here's a chatbot [api-ai-bot](https://github.com/zixia/wechaty/blob/master/example/api-ai-bot.js), who can slightly understand NLP.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
59

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
60
Natual Language Understanding enabled by [api.AI](https://api.ai), you can get your module on api.AI by it's free plan.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
61

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

## Deploy with Heroku
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
65 66 67 68

TBD

~~Follow [these instructions](https://wechaty.readme.io/docs). Then, [![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)~~
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
69 70 71 72 73 74

## Deploy with Docker

TBD


Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
75
# Installation
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
76

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
77
## Install from NPM
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
78
Use NPM is recommended to install a stable version of Wechaty published on NPM.com
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
79 80
```shell
npm install --save wechaty
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
81 82
```

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
85
## Install to Cloud9 IDE
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
86
[Cloud9 IDE](https://c9.io/) is Google Docs for Code, which is my favourite IDE today. Almost all my wechaty development is based on Cloud9.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
87 88 89

> Cloud9 IDE written in JavaScript, uses Node.js on the back-end. It uses Docker containers for its workspaces, and hosted on Google Compute Engine.

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
90
### 1. Open in Cloud9 IDE
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
91

92
Just one click here: <a href="https://c9.io/open/?name=Wechaty&type=nodejs&clone_url=https://github.com/zixia/wechaty.git&description=Wechat%20for%20Bot&selection_file=/example/ding-dong-bot.js" target="_blank"><img src="https://img.shields.io/badge/open%20in-Cloud9%20IDE-blue.svg" alt="Open Wechaty in Cloud9 IDE"></a>
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
93

94 95
### 2. Set default to Node.js v6
Open Terminal in Cloud9 IDE, use nvm to install nodejs v6, which is required by Wechaty.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109

```bash
$ nvm install 6
Downloading https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-x64.tar.xz...
######################################################################## 100.0%
Now using node v6.2.1 (npm v3.9.3)

$ nvm alias default 6
default -> 6 (-> v6.2.1)

$ node --version
v6.2.1
```

110 111 112 113 114 115 116 117
### 3. Run
```bash
$ npm install

$ node example/ding-dong-bot.js
```

### 4. Enjoy Cloud9 IDE
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
118 119 120
You are set.

## Install from Github
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
121
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 (李卓桓) 已提交
122

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
123
### 1. Install Node.js
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
124 125 126
Node.js Version 6.0 or above is required.

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
130
### 2. Fork & Clone Wechaty
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
131 132

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
138
### 3. Run Demo Bot
139
```shell
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
140 141
cd wechaty
npm install
142
node example/ding-dong-bot.js
143 144
```

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
147
### 4. Done
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
148 149 150 151

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

152
# Trouble Shooting
Huan (李卓桓)'s avatar
log doc  
Huan (李卓桓) 已提交
153

154
If wechaty is not run as expected, run unit test maybe help to find some useful message.
Huan (李卓桓)'s avatar
log doc  
Huan (李卓桓) 已提交
155 156 157 158 159 160 161

```shell
$ npm test
```

To test with full log messages

162
```shell
Huan (李卓桓)'s avatar
log doc  
Huan (李卓桓) 已提交
163
$ WECHATY_LOG=silly npm test
164 165
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
166 167
[Details about unit testing](https://github.com/zixia/wechaty/tree/master/test)

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
168
## LOG output
169
Wechaty use [npmlog](https://www.npmjs.com/package/npmlog) to output log message. You can set log level by environment variable `WECHATY_LOG` to show log message.
170

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
171
environment variable `WECHATY_LOG` values:
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
172

173 174 175 176 177
1. `silly`
1. `verbose`
1. `info`
1. `warn`
1. `error`
178
1. `silent` for disable logging
179

180
Linux/Darwin(OSX/Mac):
181 182

```bash
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
183
$ export WECHATY_LOG=verbose
184 185 186 187 188
```

Win32:

```shell
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
189
set WECHATY_LOG=verbose
190 191
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
192
Tips: You may want to have more scroll buffer size in your CMD window in windows.
193 194 195 196 197
```shell
mode con lines=32766
```
> http://stackoverflow.com/a/8775884/1123955

198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
### NpmLog with Timestamp ###
Here's a quick and dirty patch, to npmlog/log.js

```javascript
  m.message.split(/\r?\n/).forEach(function (line) {

    var date = new Date();
    var min = date.getMinutes()
    var sec = date.getSeconds()
    var hour = date.getHours()

    if (sec < 10) { sec = '0' + sec }
    if (min < 10) { min = '0' + min }
    if (hour < 10) { hour = '0' + hour }

    this.write(hour + ':' + min + ':' + sec + ' ')

    if (this.heading) {
      this.write(this.heading, this.headingStyle)
      this.write(' ')
    }
```

And we can looking forward the official support from npmlog: https://github.com/npm/npmlog/pull/24

223 224 225 226 227 228 229
## DEBUG

set environment variable WECHATY_DEBUG to enable DEBUG in Wechaty.

this will:
1. open phantomjs debugger port on 8080

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
230 231
# Requirement

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

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

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
238 239
## Events

240 241 242 243 244 245 246 247
Wechaty support the following 5 events:

1. scan
2. login
3. logout
4. message
5. error

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
248 249 250
### 1. Event: `scan`

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

```javascript
253
wechaty.on('scan', ({code, url}) => {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
254 255
  console.log(`[${code}] Scan ${url} to login.` )
})
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
256 257
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
258 259 260
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
261 262 263
    1. 200  login confirmed
    1. 201  scaned, wait for confirm
    1. 408  wait for scan
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
264

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
267 268 269
### 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 (李卓桓) 已提交
270
```javascript
271
wechaty.on('login', user => {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
272
  console.log(`user ${user} login`)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
273 274
})
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
275

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
276
### 3. Event: `logout`
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
277 278 279 280 281 282 283 284

`logout` will be emitted when bot detected it is logout, with a [Contact](#class-contact) of current logined user.

```javascript
wechaty.on('logout', user => {
  console.log(`user ${user} logout`)
})
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
285 286

### 4. Event: `message`
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
287 288
Emit when there's a new message.
```javascript
289
wechaty.on('message', message => {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
290 291
  console.log('message ${message} received')
})
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
292
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
293
The `message` here is a [Message](#class-message).
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
294

295 296 297
### 5. Event: `error`
To be support.

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
298 299
## Class Wechaty
Main bot class.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
300

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
301
```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
302
const bot = new Wechaty({
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
303
  profile
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
304
  , token
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
305
})
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
306
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
307

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
308 309
1. `profile`(OPTIONAL): profile name. if a profile name is provided, the login status will be saved to it, and automatically restored on next time of wechaty start(restart).
    * can be set by environment variable: `WECHATY_PROFILE`
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
310
1. `token`(OPTIONAL): wechaty io token. Be used to connect to cloud bot manager.
311

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
312
### Wechaty.init(): Wechaty
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
313
Initialize the bot, return Promise.
314

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
315
```javascript
316
wechaty.init()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
317
.then(() => {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
318 319
  // do other staff with bot here
}
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
320
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
321

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
322
### Wechaty.reply(message: Message, reply: String): Wechaty
323 324 325 326 327 328 329 330
Reply a `message` with `reply`.

That means: the `to` field of the reply message is the `from` of origin message.

```javascript
wechaty.reply(message, 'roger')
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
331
### Wechaty.self(): boolean
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
332 333 334 335 336 337 338 339 340 341
Check if message is send by self.

Return `true` for send from self, `false` for send from others.

```javascript
if (wechaty.self(message)) {
  console.log('this message is sent by myself!')
}
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
342 343 344
## Class Message
All wechat messages will be encaped as a Message.

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
345
### Message.get(prop): String|Contact|Room|Date
346
Get prop from a message.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
347 348

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
350 351 352 353
1. `id` :String
1. `from` :Contact
1. `to` :Contact
1. `content` :String
354
1. `room` :Room
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
355 356 357 358 359 360
1. `date` :Date

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
361
### Message.set(prop, value): Message
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
362 363 364 365 366 367 368 369
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 (李卓桓) 已提交
370
### Message.ready(): Message
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
371
A message may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
372 373 374 375

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

```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
376
message.ready()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
377 378 379 380
.then(() => {
  // Here we can be sure all the data is ready for use.
})
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
381 382 383

## Class Contact

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
384
### Contact.get(prop): String|Number
385
Get prop from a contact.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
386 387

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
389 390 391 392 393 394 395 396 397 398 399 400 401
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 (李卓桓) 已提交
402
### Contact.ready(): Contact
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
403
A Contact may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
404 405 406 407

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

```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
408
contact.ready()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
409 410 411 412 413
.then(() => {
  // Here we can be sure all the data is ready for use.
})
```

414
## Class Room
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
415 416


Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
417
### Room.get(prop): String|Array[{contact: Contact, name: String}]
418
Get prop from a room.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
419 420

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
422 423 424 425 426 427 428
1. `id` :String
1. `name` :String
1. `members` :Array
    1. `contact` :Contact
    1. `name` :String

```javascript
429
room.get('members').length
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
430
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
431
### Room.ready(): Room
432
A room may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
433 434 435 436

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

```javascript
437
room.ready()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
438 439 440 441
.then(() => {
  // Here we can be sure all the data is ready for use.
})
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
442 443

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

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
446
To test Wechaty, run:
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
447 448
```shell
npm test
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
449 450
```

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
453 454
# Version History

Huan (李卓桓)'s avatar
v0.3.0  
Huan (李卓桓) 已提交
455 456 457 458 459
## v0.3.0 (master)
1. add `reset` & `shutdown` to IO Event
2. support be managed by https://app.wechaty.io

## v0.2.3 (2016/7/28)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
460
1. add wechaty.io cloud management support: set environment variable `WECHATY_TOKEN` to enable io support
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
461
2. rename `WECHATY_SESSION` to `WECHATY_PROFILE` for better name
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
462
3. fix watchdog timer & reset bug
463

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
464
## v0.1.8 (2016/6/25)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
465
1. add a watchdog to restore from unknown state
Huan (李卓桓)'s avatar
v0.1.6  
Huan (李卓桓) 已提交
466
2. add support to download image message by `ImageMessage.readyStream()`
Huan (李卓桓)'s avatar
v0.1.7  
Huan (李卓桓) 已提交
467
3. fix lots of stable issues with webdriver exceptions & injection js code compatible
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
468

Huan (李卓桓)'s avatar
v0.1.1  
Huan (李卓桓) 已提交
469
## v0.1.1 (2016/6/10)
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
470
1. add support to save & restore wechat login session
471
1. add continious integration tests on win32 platform. (powered by [AppVeyor](https://www.appveyor.com/))
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
472
1. add environment variables HEAD/PORT/SESSION/DEBUG to config Wechaty
Huan (李卓桓)'s avatar
v0.1.1  
Huan (李卓桓) 已提交
473

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
480
## v0.0.5 (2016/5/11)
481
1. Receive & send message
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
482
1. Show contacts info
483
1. Show rooms info
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
484
1. 1st usable version
485
1. Start coding from May 1st 2016
Huan (李卓桓)'s avatar
readme  
Huan (李卓桓) 已提交
486

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
487
# Todo List
488

Huan (李卓桓)'s avatar
todo  
Huan (李卓桓) 已提交
489
- [ ] Contact
490 491 492
    - [ ] Accept a friend request
    - [ ] Send a friend request
    - [ ] Delete a contact
493 494 495 496
- [ ] Chat Room
    - [ ] Create a new chat room
    - [ ] Invite people to join a existing chat room
    - [ ] Rename a Chat Room
Huan (李卓桓)'s avatar
todo  
Huan (李卓桓) 已提交
497
- [ ] Events
498 499 500 501 502 503 504 505 506
    - [ ] 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 (李卓桓) 已提交
507
- [ ] Message
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
508 509 510
    - [ ] Send/Reply image/video/attachment message
    - [ ] Save video message to file
    - [x] Save image message to file
511
- [x] Session save/load
512

Huan (李卓桓)'s avatar
readme  
Huan (李卓桓) 已提交
513
Everybody is welcome to issue your needs.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
514 515 516 517 518 519 520 521 522

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

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

525
# See Also
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
526

527
## Similar Project
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
528 529

### Javascript
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
530
1. [Weixinbot](https://github.com/feit/Weixinbot) Nodejs 封装网页版微信的接口,可编程控制微信消息
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
531 532
1. [wechatBot](https://github.com/stonexer/wechatBot) 面向个人的微信 wechat 机器人平台 - 使用微信网页版接口wechat4u
1. [Wechat4U](https://github.com/nodeWechat/wechat4u) 微信 wechat web 网页版接口的 JavaScript 实现,兼容Node和浏览器
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
533

534
### Perl
Huan (李卓桓)'s avatar
typo  
Huan (李卓桓) 已提交
535
1. [MojoWeixin](https://github.com/sjdy521/Mojo-Weixin) 使用Perl语言编写的微信客户端框架,基于Mojolicious,要求Perl版本5.10+,可通过插件提供基于HTTP协议的api接口供其他语言或系统调用
536

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
537
### Python
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
538 539 540
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): 微信个人号接口(支持文件、图片上下载)、微信机器人及命令行微信。三十行即可自定义个人号机器人
541

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
542
## Chat Script
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
543 544 545 546
1. [SuperScript](http://superscriptjs.com/) A dialog system and bot engine for conversational UI's. (Pure Javascript)
2. [RiveScript](https://www.rivescript.com/) A simple scripting language for giving intelligence to chatbots and other conversational entities. (Perl original, Multi-Language support)

## Application
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
547 548
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.

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
549
## Service
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
550 551 552 553 554 555 556 557 558
1. [Luis.ai](https://www.luis.ai) Language Understanding Intelligent Service (LUIS) offers a fast and effective way of adding language understanding to applications from Microsoft
1. [API.ai](https://api.ai) Build conversational user interfaces
1. [Wit.ai](https://wit.ai) Turn user input into action from Facebook
1. [Watson](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) from IBM

* [Advanced Natural Language Processing Tools for Bot Makers](https://stanfy.com/blog/advanced-natural-language-processing-tools-for-bot-makers/) a good article of comparing the above services.

## Framework
1. [Bot Framework](https://dev.botframework.com/) Build and connect intelligent bots to interact with your users naturally wherever they are, from text/sms to Skype, Slack, Office 365 mail and other popular services. from Microsoft
559

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
560
My Story
561 562 563 564 565 566 567 568 569 570 571
----------------
My daily life/work depends on too much chat on wechat.
* I almost have 14,000 wechat friends till May 2014, before wechat restricts a total number of friends to 5,000.
* I almost have 400 wechat rooms that most of them have more than 400 members.

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

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 room). ;-)

At last, It's built for my personal study purpose of Automatically Testing.

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
572 573 574 575 576
Author
-----------------
Zhuohuan LI <zixia@zixia.net> (http://linkedin.com/in/zixia)

<a href="http://stackoverflow.com/users/1123955/zixia">
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
577
  <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">
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
578 579 580 581 582 583 584
</a>

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

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
586
[downloads-image]: http://img.shields.io/npm/dm/wechaty.svg?style=flat-square
587
[downloads-url]: https://npmjs.org/package/wechaty
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
588 589 590 591
[dependency-image]: https://img.shields.io/david/zixia/wechaty.svg
[dependency-url]: https://david-dm.org/zixia/wechaty
[dev-dependency-image]: https://img.shields.io/david/dev/zixia/wechaty.svg
[dev-dependency-url]: https://david-dm.org/zixia/wechaty#info=devDependencies