Class: QQBot::Bot

Inherits:
Object
  • Object
show all
Defined in:
lib/qqbot/bot.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBot



5
6
7
8
# File 'lib/qqbot/bot.rb', line 5

def initialize
  @api = QQBot::Api.new
  @api.auth_options = 
end

Class Method Details

.build_friend_list(json) ⇒ Object



249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# File 'lib/qqbot/bot.rb', line 249

def self.build_friend_list(json)
  friend_map = {}

  friends = json['friends']
  friends.each do |item|
    friend = QQBot::Friend.new
    friend.id = item['uin']
    friend.category_id = item['categories']
    friend_map[friend.id] = friend
  end

  marknames = json['marknames']
  marknames.each do |item|
    friend_map[item['uin']].markname = item['markname']
  end

  vipinfo = json['vipinfo']
  vipinfo.each do |item|
    friend = friend_map[item['u']]
    friend.is_vip = item['is_vip']
    friend.vip_level = item['vip_level']
  end

  info = json['info']
  info.each do |item|
    friend_map[item['uin']].nickname = item['nick']
  end

  friend_map.values
end

.check_response_json(code, body) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/qqbot/bot.rb', line 10

def self.check_response_json(code, body)
  if code == '200'
    json = JSON.parse body
    if json['retcode'] == 0
      return json['result']
    else
      QQBot::LOGGER.info "请求失败,JSON返回码 #{json['retcode']}"
    end
  else
    QQBot::LOGGER.info "请求失败,HTTP返回码 #{code}"
  end
end

.check_send_msg_response(code, body) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/qqbot/bot.rb', line 23

def self.check_send_msg_response(code, body)
  if code == '200'
    json = JSON.parse body
    if json['errCode'] == 0
      QQBot::LOGGER.info '发送成功'
      return true
    else
      QQBot::LOGGER.info "发送失败,JSON返回码 #{json['retcode']}"
    end
  else
    QQBot::LOGGER.info "请求失败,HTTP返回码 #{code}"
  end
end

Instance Method Details

#build_user_info(result) ⇒ Object



335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
# File 'lib/qqbot/bot.rb', line 335

def (result)
   = QQBot::UserInfo.new
  .phone = result['phone']
  .occupation = result['occupation']
  .college = result['college']
  .id = result['uin']
  .blood = result['blood']
  .slogan = result['lnick']
  .homepage = result['homepage']
  .vip_info = result['vip_info']
  .city = result['city']
  .country = result['country']
  .province = result['province']
  .personal = result['personal']
  .shengxiao = result['shengxiao']
  .nickname = result['nick']
  .email = result['email']
  . = result['account']
  .gender = result['gender']
  .mobile = result['mobile']
  birthday = QQBot::Birthday.new
  birthday.year = result['birthday']['year']
  birthday.month = result['birthday']['month']
  birthday.day = result['birthday']['day']
  .birthday = birthday

  
end

#close_qrcode_serverObject



85
86
87
88
89
90
91
# File 'lib/qqbot/bot.rb', line 85

def close_qrcode_server
  if @pid
    QQBot::LOGGER.info '关闭web服务进程'
    Process.kill('KILL', @pid)
    @pid = nil
  end
end

#get_account_infoObject



315
316
317
318
319
320
321
322
323
# File 'lib/qqbot/bot.rb', line 315

def 
  code, body = @api.
  result = self.class.check_response_json(code, body)

  if result
    # TODO

    (result)
  end
end

#get_discuss_info(discuss_id) ⇒ Object



451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
# File 'lib/qqbot/bot.rb', line 451

def get_discuss_info(discuss_id)
  code, body = @api.get_discuss_info(discuss_id)
  result = self.class.check_response_json(code, body)

  if result
    discuss_info = QQBot::DiscussInfo.new
    info = result['info']
    discuss_info.id = info['did']
    discuss_info.name = info['discu_name']

    member_map = {}

    mem_info = result['mem_info']
    mem_info.each do |item|
      member = QQBot::DiscussMember.new
      member.id = item['uin']
      member.nickname = item['nick']
      member_map[member.id] = member
    end

    mem_status = result['mem_status']
    mem_status.each do |item|
      member = member_map[item['uin']]
      member.client_type = item['client_type']
      member.status = item['status']
    end

    discuss_info.members = member_map.values

    discuss_info
  end
end

#get_discuss_listObject



280
281
282
283
284
285
286
287
288
289
290
291
292
293
# File 'lib/qqbot/bot.rb', line 280

def get_discuss_list
  code, body = @api.get_discuss_list
  result = self.class.check_response_json(code, body)

  if result
    dnamelist = result['dnamelist']
    dnamelist.collect do |item|
      discuss = QQBot::Discuss.new
      discuss.name = item['name']
      discuss.id = item['did']
      discuss
    end
  end
end

#get_friend_info(friend_id) ⇒ Object



325
326
327
328
329
330
331
332
333
# File 'lib/qqbot/bot.rb', line 325

def get_friend_info(friend_id)
  code, body = @api.get_friend_info(friend_id)
  result = self.class.check_response_json(code, body)

  if result
    # TODO

    (result)
  end
end

#get_friend_listObject



240
241
242
243
244
245
246
247
# File 'lib/qqbot/bot.rb', line 240

def get_friend_list
  code, body = @api.get_friend_list
  result = self.class.check_response_json(code, body)

  if result
    self.class.build_friend_list(result)
  end
end

#get_friend_list_with_categoryObject



208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
# File 'lib/qqbot/bot.rb', line 208

def get_friend_list_with_category
  code, body = @api.get_friend_list
  result = self.class.check_response_json(code, body)

  if result
    friend_list = self.class.build_friend_list result

    categories = result['categories']
    has_default_category = false
    category_list = categories.collect do |item|
      category = QQBot::Category.new
      category.name = item['name']
      category.sort = item['sort']
      category.id = item['index']
      category.friends = friend_list.select { |friend| friend.category_id == category.id }
      has_default_category ||= (category.id == 0)
      category
    end

    unless has_default_category
      category = QQBot::Category.new
      category.name = '我的好友(默认)'
      category.sort = 1
      category.id = 0
      category.friends = friend_list.select { |friend| friend.category_id == category.id }
      category_list << category
    end

    category_list
  end
end

#get_group_info(group_code) ⇒ Object



401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
# File 'lib/qqbot/bot.rb', line 401

def get_group_info(group_code)
  code, body = @api.get_group_info(group_code)
  result = self.class.check_response_json(code, body)

  if result
    group_info = QQBot::GroupInfo.new
    ginfo = result['ginfo']
    group_info.id = ginfo['gid']
    group_info.create_time = ginfo['createtime']
    group_info.memo = ginfo['memo']
    group_info.name = ginfo['name']
    group_info.owner_id = ginfo['owner']
    group_info.markname = ginfo['markname']

    member_map = {}

    minfo = result['minfo']
    minfo.each do |item|
      member = QQBot::GroupMember.new
      member.id = item['uin']
      member.nickname = item['nick']
      member.gender = item['gender']
      member.country = item['country']
      member.city = item['city']
      member_map[member.id] = member
    end

    cards = result['cards']
    cards.each { |item| member_map[item['muin']].markname = item['card'] } if cards

    vipinfo = result['vipinfo']
    vipinfo.each do |item|
      member = member_map[item['u']]
      member.is_vip = item['is_vip']
      member.vip_level = item['vip_level']
    end

    stats = result['stats']
    stats.each do |item|
      member = member_map[item['uin']]
      member.client_type = item['client_type']
      member.status = item['stat']
    end

    group_info.members = member_map.values

    group_info
  end
end

#get_group_listObject



183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# File 'lib/qqbot/bot.rb', line 183

def get_group_list
  code, body = @api.get_group_list
  result = self.class.check_response_json(code, body)

  if result
    group_map = {}

    gnamelist = result['gnamelist']
    gnamelist.each do |item|
      group = QQBot::Group.new
      group.name = item['name']
      group.id = item['gid']
      group.code = item['code']
      group_map[group.id] = group
    end

    gmarklist = result['gmarklist']
    gmarklist.each do |item|
      group_map[item['uin']].markname = item['markname']
    end

    group_map.values
  end
end

#get_online_friendsObject



387
388
389
390
391
392
393
394
395
396
397
398
399
# File 'lib/qqbot/bot.rb', line 387

def get_online_friends
  code, body = @api.get_online_friends
  result = self.class.check_response_json(code, body)

  if result
    result.collect do |item|
      online = QQBot::Online.new
      online.id = item['uin']
      online.client_type = item['client_type']
      online
    end
  end
end

#get_psessionid_and_uin(ptwebqq) ⇒ Object



110
111
112
113
114
115
116
117
# File 'lib/qqbot/bot.rb', line 110

def get_psessionid_and_uin(ptwebqq)
  code, body = @api.get_psessionid_and_uin ptwebqq

  result = self.class.check_response_json(code, body)
  if result
    return result['psessionid'], result['uin']
  end
end

#get_ptwebqq(url) ⇒ Object



93
94
95
96
97
98
99
100
101
# File 'lib/qqbot/bot.rb', line 93

def get_ptwebqq(url)
  code, ptwebqq = @api.get_ptwebqq url

  if code == '302'
    ptwebqq
  else
    QQBot::LOGGER.info "请求失败,返回码#{code}"
  end
end

#get_qq_by_id(id) ⇒ Object



378
379
380
381
382
383
384
385
# File 'lib/qqbot/bot.rb', line 378

def get_qq_by_id(id)
  code, body = @api.get_qq_by_id(id)
  result = self.class.check_response_json(code, body)

  if result
    result['account']
  end
end

#get_qrcodeObject



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/qqbot/bot.rb', line 37

def get_qrcode
  code, body = @api.get_qrcode

  if code == '200'
    file_name = File.expand_path('qrcode.png', File.dirname(__FILE__));

    File.open(file_name, 'wb') do |file|
      file.write body
      file.close
    end

    QQBot::LOGGER.info "二维码已经保存在#{file_name}中"

    unless @pid
      QQBot::LOGGER.info '开启web服务进程'
      @pid = spawn("ruby -run -e httpd #{file_name} -p 9090")
    end

    QQBot::LOGGER.info '也可以通过访问 http://localhost:9090 查看二维码'
    return true
  else
    QQBot::LOGGER.info "请求失败,返回码#{code}"
  end
end

#get_recent_listObject



364
365
366
367
368
369
370
371
372
373
374
375
376
# File 'lib/qqbot/bot.rb', line 364

def get_recent_list
  code, body = @api.get_recent_list
  result = self.class.check_response_json(code, body)

  if result
    result.collect do |item|
      recent = QQBot::Recent.new
      recent.id = item['uin']
      recent.type = item['type']
      recent
    end
  end
end

#get_vfwebqq(ptwebqq) ⇒ Object



103
104
105
106
107
108
# File 'lib/qqbot/bot.rb', line 103

def get_vfwebqq(ptwebqq)
  code, body = @api.get_vfwebqq(ptwebqq)

  result = self.class.check_response_json(code, body)
  result['vfwebqq'] if result
end

#loginObject



119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/qqbot/bot.rb', line 119

def 
  QQBot::LOGGER.info '开始获取二维码'
  raise QQBot::Error::LoginFailed unless get_qrcode

  QQBot::LOGGER.info '等待扫描二维码'
  url = verify_qrcode
  raise QQBot::Error::LoginFailed unless url

  close_qrcode_server

  QQBot::LOGGER.info '开始获取ptwebqq'
  ptwebqq = get_ptwebqq url
  raise QQBot::Error::LoginFailed unless ptwebqq

  QQBot::LOGGER.info '开始获取vfwebqq'
  vfwebqq = get_vfwebqq ptwebqq
  raise QQBot::Error::LoginFailed unless vfwebqq

  QQBot::LOGGER.info '开始获取psessionid和uin'
  psessionid, uin = get_psessionid_and_uin ptwebqq
  raise QQBot::Error::LoginFailed unless uin && psessionid

  {
    ptwebqq: ptwebqq,
    vfwebqq: vfwebqq,
    psessionid: psessionid,
    uin: uin
  }
end

#pollObject



149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/qqbot/bot.rb', line 149

def poll
  loop do
    code, body = @api.poll
    result = self.class.check_response_json(code, body)

    if result
      result.each do |item|
        message = QQBot::Message.new
        value = item['value']
        message.type, message.from_id, message.send_id =
        case item['poll_type']
        when 'message' then [0, value['from_uin'], value['from_uin']]
        when 'group_message' then [1, value['from_uin'], value['send_uin']]
        when 'discu_message' then [2, value['from_uin'], value['send_uin']]
        else 3
        end
        message.time = value['time']
        message.content = value['content'][1]

        font = QQBot::Font.new
        font_json = value['content'][0][1]
        font.color = font_json['color']
        font.name = font_json['name']
        font.size = font_json['size']
        font.style = font_json['style']
        message.font = font

        yield message if block_given?
      end
    end
    sleep 1
  end
end

#send_to_discuss(discuss_id, content) ⇒ Object



305
306
307
308
# File 'lib/qqbot/bot.rb', line 305

def send_to_discuss(discuss_id, content)
  code, body = @api.send_to_discuss(discuss_id, content)
  self.class.check_send_msg_response(code, body)
end

#send_to_friend(friend_id, content) ⇒ Object



295
296
297
298
# File 'lib/qqbot/bot.rb', line 295

def send_to_friend(friend_id, content)
  code, body = @api.send_to_friend(friend_id, content)
  self.class.check_send_msg_response(code, body)
end

#send_to_group(group_id, content) ⇒ Object



300
301
302
303
# File 'lib/qqbot/bot.rb', line 300

def send_to_group(group_id, content)
  code, body = @api.send_to_group(group_id, content)
  self.class.check_send_msg_response(code, body)
end

#send_to_sess(sess_id, content) ⇒ Object



310
311
312
313
# File 'lib/qqbot/bot.rb', line 310

def send_to_sess(sess_id, content)
  code, body = @api.send_to_sess(sess_id, content)
  self.class.check_send_msg_response(code, body)
end

#verify_qrcodeObject



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/qqbot/bot.rb', line 62

def verify_qrcode
  url = ''

  until url.start_with? 'http' do
    sleep 5
    code, body = @api.verify_qrcode

    if code == '200'
      result = body.force_encoding("UTF-8")
      if result.include? '二维码已失效'
        QQBot::LOGGER.info '二维码已失效,准备重新获取'
        return unless get_qrcode
      elsif result.include? 'http'
        QQBot::LOGGER.info '认证成功'
        return URI.extract(result).first
      end
    else
      QQBot::LOGGER.info "请求失败,返回码#{code}"
      return
    end
  end
end