puxun 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ .rvmvc
7
+ Gemfile.lock
8
+ InstalledFiles
9
+ _yardoc
10
+ coverage
11
+ doc/
12
+ lib/bundler/man
13
+ pkg
14
+ rdoc
15
+ spec/reports
16
+ test/tmp
17
+ test/version_tmp
18
+ tmp
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm use 1.9.3@3.2
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in puxun.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 wikimo
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Puxun
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'puxun'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install puxun
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,3 @@
1
+ module Puxun
2
+ VERSION = "0.0.2"
3
+ end
data/lib/puxun.rb ADDED
@@ -0,0 +1,85 @@
1
+ # coding: utf-8
2
+ require "puxun/version"
3
+
4
+ require 'faraday'
5
+ require 'rtesseract'
6
+ require 'nokogiri'
7
+
8
+ module Puxun
9
+ class Sms
10
+ def initialize
11
+ @conn = Faraday.new(:url => 'http://duanxin.pushing.com.cn') do |faraday|
12
+ faraday.request :url_encoded
13
+ # faraday.response :logger
14
+ faraday.adapter Faraday.default_adapter
15
+ # faraday.use :cookie_jar
16
+ end
17
+
18
+ #获取并设置cookie
19
+ response = @conn.get '/login.jsp'
20
+ cookie = response['set-cookie'].split('; ')[0]
21
+ @conn.headers['Cookie'] = cookie
22
+ @conn.headers[:user_agent] = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:26.0) Gecko/20100101 Firefox/26.0'
23
+ end
24
+
25
+ #发送短信
26
+ def send(sms_hash)
27
+ return 'sms_hash_nil' if sms_hash.nil?
28
+
29
+ response = @conn.post '/servlet/Login?method=login', { :username => sms_hash[:username],:passwd => sms_hash[:passwd],:rand => get_captcha }
30
+ response = @conn.get '/servlet/SmsManage?method=sms_write'
31
+ doc = Nokogiri::HTML(response.body)
32
+
33
+ if doc.css('#realNum').first.nil?
34
+ return 'real_num_nil'
35
+ else
36
+ smsNum = doc.css('#realNum').first['value']
37
+ end
38
+
39
+ msg = sms_hash[:msg].encode('gbk')
40
+ phoneNum = sms_hash[:phone_num]
41
+
42
+ msg_info = {
43
+ :IDSMSUser => 999999,
44
+ :PhoneNum => phoneNum,
45
+ :Msg => msg,
46
+ :Submit => '下一步'.encode('gbk'),
47
+ :chrLen => msg.length,
48
+ :chrPhoneLen=>phoneNum.split('\r\n').length,
49
+ :method => 'confirm',
50
+ :realNum => smsNum,
51
+ :smsLen => 1,
52
+ :timetype => 0}
53
+
54
+ response = @conn.post '/servlet/SmsManage?method=confirm', msg_info
55
+ doc = Nokogiri::HTML(response.body)
56
+ confirm_txt = doc.css('.right_TitleC0').text #确认发送
57
+
58
+ sendCountNum = doc.css('#sendCountNum').first['value']
59
+
60
+ confirm_data = {
61
+ :sendCountNum =>sendCountNum,
62
+ :timetype => 0,
63
+ :Msg => msg,
64
+ :submit => '确认发送'.encode('gbk')
65
+ }
66
+
67
+ response = @conn.post '/servlet/SmsManage?method=finish', confirm_data
68
+
69
+ 'success'
70
+ end
71
+
72
+ private
73
+ #识别验证码
74
+ def get_captcha
75
+ response = @conn.get '/authImg'
76
+ open("captcha.jpg" ,"wb") { |file|file.write(response.body)}
77
+
78
+ str = RTesseract.new("captcha.jpg").to_s
79
+ File.unlink("captcha.jpg")
80
+ captcha = str.strip.sub(/\n/,'').to_s if !str.nil?
81
+ end
82
+
83
+
84
+ end
85
+ end
data/puxun.gemspec ADDED
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'puxun/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "puxun"
8
+ spec.version = Puxun::VERSION
9
+ spec.authors = ["wikimo"]
10
+ spec.email = ["gwikimo@gmail.com"]
11
+ spec.description = %q{puxun sms }
12
+ spec.summary = %q{send sms use puxun admin}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+
24
+ spec.add_dependency "nokogiri", '1.5.10'
25
+ spec.add_dependency "faraday"
26
+ spec.add_dependency "rtesseract"
27
+ end
data/test.rb ADDED
@@ -0,0 +1,12 @@
1
+ # coding: utf-8
2
+ require 'Puxun'
3
+
4
+ px = Puxun::Sms.new
5
+ # p px
6
+ sms_hash = {
7
+ :username => '5311',
8
+ :passwd => 'g82720905',
9
+ :msg => '亲爱的会员请注意每日金币值,别超标哦【金币健康管理】',
10
+ :phone_num => "18157305082\r\n15857367715"
11
+ }
12
+ result = px.send sms_hash
metadata ADDED
@@ -0,0 +1,136 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: puxun
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - wikimo
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-01-16 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.3'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.3'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: nokogiri
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - '='
52
+ - !ruby/object:Gem::Version
53
+ version: 1.5.10
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - '='
60
+ - !ruby/object:Gem::Version
61
+ version: 1.5.10
62
+ - !ruby/object:Gem::Dependency
63
+ name: faraday
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: rtesseract
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ description: ! 'puxun sms '
95
+ email:
96
+ - gwikimo@gmail.com
97
+ executables: []
98
+ extensions: []
99
+ extra_rdoc_files: []
100
+ files:
101
+ - .gitignore
102
+ - .rvmrc
103
+ - Gemfile
104
+ - LICENSE.txt
105
+ - README.md
106
+ - Rakefile
107
+ - lib/puxun.rb
108
+ - lib/puxun/version.rb
109
+ - puxun.gemspec
110
+ - test.rb
111
+ homepage: ''
112
+ licenses:
113
+ - MIT
114
+ post_install_message:
115
+ rdoc_options: []
116
+ require_paths:
117
+ - lib
118
+ required_ruby_version: !ruby/object:Gem::Requirement
119
+ none: false
120
+ requirements:
121
+ - - ! '>='
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ required_rubygems_version: !ruby/object:Gem::Requirement
125
+ none: false
126
+ requirements:
127
+ - - ! '>='
128
+ - !ruby/object:Gem::Version
129
+ version: '0'
130
+ requirements: []
131
+ rubyforge_project:
132
+ rubygems_version: 1.8.25
133
+ signing_key:
134
+ specification_version: 3
135
+ summary: send sms use puxun admin
136
+ test_files: []