raphael 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: '0430697c3a901087fa1c0f19caa95c6a7fce2c8d'
4
+ data.tar.gz: e014c53473b910c9c3102a98d09a20d1065c2283
5
+ SHA512:
6
+ metadata.gz: c41915a3b13e7b2605ca1b6cc755ce51eba704c43b649add1722574d70af31dc66d999d59ea4b9c4ff531057d6af944c275db3dd47f506f8eec58d030241f8d5
7
+ data.tar.gz: 7e906c4c6a3a76bcf9acd73df7fe63ca389c40fd43cdb94b893142d1c80701ee747de687fe174a5fd721cb39c3cedcd90d3bdc629611c0bd0f591b8e5c2537c4
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /*.gem
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in raphael.gemspec
4
+ gemspec
@@ -0,0 +1,36 @@
1
+ # Raphael
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/raphael`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'raphael'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install raphael
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/nkpoid/raphael.
36
+
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "raphael"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ require_relative "raphael/version"
2
+ require_relative "raphael/plugin"
3
+ require_relative "raphael/account"
4
+
5
+ Init.callback()
@@ -0,0 +1,75 @@
1
+ require "yaml"
2
+
3
+ class Account
4
+ attr_reader :tag, :rest, :stream, :screen_name
5
+ attr_accessor :thread
6
+ @accounts = []
7
+
8
+ def initialize(tag, token)
9
+ @tag = tag
10
+ @rest = Twitter::REST::Client.new(token)
11
+ @stream = Twitter::Streaming::Client.new(token)
12
+ @screen_name = @rest.user.screen_name
13
+ end
14
+
15
+ def start_stream
16
+ self.stream.user replies: 'all' do |obj|
17
+ begin
18
+ case obj
19
+ when Twitter::Tweet
20
+ Tweet.callback obj, self
21
+
22
+ obj.text =~ /^@\w+?\s+?(.+)/
23
+ if $1
24
+ obj.args = $1.split
25
+ end
26
+ Command.all.each do |command|
27
+ if obj.text =~ /^@(?:nkroid)\s+#{command.arg}/
28
+ command.proc.call obj, self
29
+ end
30
+ end
31
+ when Twitter::Streaming::FriendList
32
+ FriendList.callback obj, self
33
+ when Twitter::Streaming::Event
34
+ Event.callback obj, self
35
+ when Twitter::Streaming::DeletedTweet
36
+ DeletedTweet.callback obj, self
37
+ end
38
+ rescue
39
+ Error.callback($!)
40
+ next
41
+ end
42
+ end
43
+ rescue
44
+ Error.callback($!)
45
+ retry
46
+ end
47
+
48
+ class << self
49
+ attr_reader :accounts
50
+
51
+ def register *args
52
+ @accounts << self.new(*args)
53
+ end
54
+
55
+ def all
56
+ Array(@accounts)
57
+ end
58
+
59
+ def find screen_name
60
+ Account.all.find{|a|a.screen_name == screen_name}
61
+ end
62
+
63
+ def threads
64
+ Account.all.map{|a|a.thread}
65
+ end
66
+
67
+ def load_yaml path
68
+ YAML.load_file(path).each do |tag, token|
69
+ Account.register(tag, token)
70
+ end
71
+ rescue
72
+ Error.callback($!)
73
+ end
74
+ end
75
+ end
@@ -0,0 +1,71 @@
1
+ require "twitter"
2
+
3
+ class Plugin
4
+ attr_reader :proc, :opts
5
+ def initialize opts={}, &blk
6
+ @proc = blk
7
+ @opts = opts
8
+ end
9
+
10
+ class << self
11
+ attr_reader :plugins
12
+ alias :all :plugins
13
+
14
+ def hook opts={}, &blk
15
+ @plugins ||= []
16
+ @plugins << self.new(opts, &blk)
17
+ end
18
+
19
+ def callback *args
20
+ Array(@plugins).each do |plugin|
21
+ plugin.proc.call *args
22
+ end
23
+ end
24
+ end
25
+ end
26
+
27
+ class Tweet < Plugin
28
+ end
29
+
30
+ class Command < Plugin
31
+ attr_reader :arg
32
+ def initialize cmd, opts={}, &blk
33
+ @proc = blk
34
+ @opts = opts
35
+ @arg = cmd
36
+ end
37
+
38
+ class << self
39
+ def register cmd, opts={}, &blk
40
+ @plugins ||= []
41
+ @plugins << self.new(cmd, opts, &blk)
42
+ end
43
+
44
+ def check text
45
+ @plugins.any? do |plugin|
46
+ text =~ /^@(?:nkroid)\s+#{plugin.arg}/
47
+ end
48
+ end
49
+ end
50
+ end
51
+
52
+ class FriendList < Plugin
53
+ end
54
+
55
+ class Event < Plugin
56
+ end
57
+
58
+ class DeletedTweet < Plugin
59
+ end
60
+
61
+ class Init < Plugin
62
+ end
63
+
64
+ class Error < Plugin
65
+ end
66
+
67
+ class Twitter::Tweet
68
+ def reply text, rest
69
+ rest.update "@#{self.user.screen_name}\s#{text}", in_reply_to_status: self
70
+ end
71
+ end
@@ -0,0 +1,3 @@
1
+ module Raphael
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,35 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'raphael/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "raphael"
8
+ spec.version = Raphael::VERSION
9
+ spec.authors = ["nkpoid"]
10
+ spec.email = ["nkpoidjp@gmail.com"]
11
+
12
+ spec.summary = %q{Twitter Bot Framework}
13
+ spec.homepage = "https://nkpoid.github.io"
14
+
15
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
16
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
17
+ # if spec.respond_to?(:metadata)
18
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
19
+ # else
20
+ # raise "RubyGems 2.0 or newer is required to protect against " \
21
+ # "public gem pushes."
22
+ # end
23
+
24
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
25
+ f.match(%r{^(test|spec|features)/})
26
+ end
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+
31
+ spec.add_runtime_dependency "twitter"
32
+
33
+ spec.add_development_dependency "bundler", "~> 1.14"
34
+ spec.add_development_dependency "rake", "~> 10.0"
35
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: raphael
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - nkpoid
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-03-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: twitter
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.14'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.14'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - nkpoidjp@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - Gemfile
64
+ - README.md
65
+ - Rakefile
66
+ - bin/console
67
+ - bin/setup
68
+ - lib/raphael.rb
69
+ - lib/raphael/account.rb
70
+ - lib/raphael/plugin.rb
71
+ - lib/raphael/version.rb
72
+ - raphael.gemspec
73
+ homepage: https://nkpoid.github.io
74
+ licenses: []
75
+ metadata: {}
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubyforge_project:
92
+ rubygems_version: 2.6.8
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: Twitter Bot Framework
96
+ test_files: []