flowdock-notifications 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +22 -0
- data/Rakefile +1 -0
- data/bin/flowdock-notifications +7 -0
- data/bin/setup +7 -0
- data/flowdock-notifications.gemspec +26 -0
- data/lib/flowdock-notifications.rb +8 -0
- data/lib/flowdock-notifications/flowdock_client.rb +65 -0
- data/lib/flowdock-notifications/message_notification.rb +47 -0
- data/lib/flowdock-notifications/notifier.rb +31 -0
- data/lib/flowdock-notifications/simple_store.rb +25 -0
- data/lib/flowdock-notifications/version.rb +3 -0
- metadata +114 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: ef42929a22a7cfa9910b07dffe2fb137217413df
|
4
|
+
data.tar.gz: 33b2bb041e8bcdfd767eb068cf380ebae3c3fb0d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bad1115da8241d13c21222c8e5ff1399d674f20ee9aaa50df4ddb2718e7a6805208525d16f6881250c995cd781548d9220d2f11186d0d4c6b2f37a7deb76b8dc
|
7
|
+
data.tar.gz: bfe0ca9ab3939f9f32946b0a74117314291981f6b2a2039b1c63e11bd9d93ef8ab51248e92f28595687775796b88ef1716493ed2b9e75199a1a06f8068eb4c58
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Kent Mewhort
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# Flowdock::Notifications
|
2
|
+
|
3
|
+
This gem provides cross-platform message notifications for flowdock (through libnotify on linux, growl on mac). Currently only
|
4
|
+
supports showing all messages across all flows.
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Install the gem globally:
|
9
|
+
|
10
|
+
$ gem install flowdock-notifications
|
11
|
+
|
12
|
+
Add `FLOWDOCK_API_TOKEN=<your flowdock api token>` to your environment variables.
|
13
|
+
|
14
|
+
Then run `bin/flowdock-notifications' as periodic as you'd like to receive messages (eg. every 30 seconds) from your cron.
|
15
|
+
|
16
|
+
## Contributing
|
17
|
+
|
18
|
+
1. Fork it ( https://github.com/kmewhort/flowdock-notifications/fork )
|
19
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
20
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
21
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
22
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/setup
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'flowdock-notifications/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "flowdock-notifications"
|
8
|
+
spec.version = FlowdockNotifications::VERSION
|
9
|
+
spec.authors = ["Kent Mewhort"]
|
10
|
+
spec.email = ["kent@openissues.ca"]
|
11
|
+
|
12
|
+
spec.summary = %q{Cross-platform desktop notifications for Flowdock}
|
13
|
+
spec.homepage = "http://github.com/kmewhort/flowdock-notifications"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
+
spec.bindir = "exe"
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_runtime_dependency "flowdock"
|
22
|
+
spec.add_runtime_dependency "notify"
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.9"
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
26
|
+
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
require "flowdock-notifications/version"
|
2
|
+
require "flowdock-notifications/flowdock_client"
|
3
|
+
require "flowdock-notifications/simple_store"
|
4
|
+
require "flowdock-notifications/message_notification"
|
5
|
+
require "flowdock-notifications/notifier"
|
6
|
+
|
7
|
+
module FlowdockNotifications
|
8
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
require 'flowdock'
|
2
|
+
require 'tmpdir'
|
3
|
+
require 'open-uri'
|
4
|
+
|
5
|
+
class FlowdockNotifications::FlowdockClient
|
6
|
+
def initialize
|
7
|
+
@client = Flowdock::Client.new(api_token: token)
|
8
|
+
end
|
9
|
+
|
10
|
+
def flow_names
|
11
|
+
flows.map {|flow| flow['parameterized_name']}
|
12
|
+
end
|
13
|
+
|
14
|
+
def messages_since(flow_name, since_msg_id)
|
15
|
+
@client.get("#{flow_url(flow_name)}/messages", since_id: since_msg_id)
|
16
|
+
end
|
17
|
+
|
18
|
+
def latest_message_id(flow_name)
|
19
|
+
latest_msg = @client.get("#{flow_url(flow_name)}/messages", limit: 1).first
|
20
|
+
latest_msg.nil? ? 0 : latest_msg['id']
|
21
|
+
end
|
22
|
+
|
23
|
+
def user(user_id)
|
24
|
+
return nil if user_id.nil? || user_id == '0'
|
25
|
+
@client.get "/users/#{user_id}"
|
26
|
+
end
|
27
|
+
|
28
|
+
def avatar(user_id)
|
29
|
+
u = user(user_id)
|
30
|
+
return nil if u.nil?
|
31
|
+
|
32
|
+
url = u['avatar']
|
33
|
+
return nil if url.nil? || url.empty?
|
34
|
+
|
35
|
+
avatar_id = url.match(/\/([^\/]+)\/\Z/)[1]
|
36
|
+
return nil if avatar_id.nil?
|
37
|
+
|
38
|
+
# cached local copy of the avatar
|
39
|
+
local_filename = "#{Dir.tmpdir}/#{avatar_id}"
|
40
|
+
unless File.exists? local_filename
|
41
|
+
File.open(local_filename, "wb") do |saved_file|
|
42
|
+
open(url, "rb") {|read_file| saved_file.write(read_file.read)}
|
43
|
+
end
|
44
|
+
end
|
45
|
+
local_filename
|
46
|
+
end
|
47
|
+
|
48
|
+
private
|
49
|
+
def token
|
50
|
+
ENV['FLOWDOCK_API_TOKEN'] or raise "Must configure FLOWDOCK_API_TOKEN in your environment variables"
|
51
|
+
end
|
52
|
+
|
53
|
+
def flows
|
54
|
+
@flows ||= @client.get('/flows')
|
55
|
+
end
|
56
|
+
|
57
|
+
def flow(flow_name)
|
58
|
+
flows.find {|f| f['parameterized_name'] == flow_name}
|
59
|
+
end
|
60
|
+
|
61
|
+
def flow_url(flow_name)
|
62
|
+
f = flow(flow_name)
|
63
|
+
"/flows/#{f['organization']['parameterized_name']}/#{f['parameterized_name']}"
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require 'notify'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
class FlowdockNotifications::MessageNotification
|
5
|
+
def initialize(client, flow_name, message)
|
6
|
+
@message = message
|
7
|
+
@flow_name = flow_name
|
8
|
+
@client = client
|
9
|
+
end
|
10
|
+
|
11
|
+
def show!
|
12
|
+
Notify.notify title, content, options
|
13
|
+
end
|
14
|
+
|
15
|
+
protected
|
16
|
+
def options
|
17
|
+
opts = {
|
18
|
+
app_name: "flowdock-notifications"
|
19
|
+
}
|
20
|
+
opts[:icon] = icon if icon
|
21
|
+
opts
|
22
|
+
end
|
23
|
+
|
24
|
+
def title
|
25
|
+
return @title if @title
|
26
|
+
user = @client.user(@message['user'])
|
27
|
+
@title ||= "[#{@flow_name}] #{user.nil? ? '' : user['nick']}"
|
28
|
+
end
|
29
|
+
|
30
|
+
def content
|
31
|
+
return nil if @message['content'].nil?
|
32
|
+
|
33
|
+
if @message['content'].is_a? String
|
34
|
+
@message['content']
|
35
|
+
elsif @message['content']['subject']
|
36
|
+
@message['content']['subject']
|
37
|
+
elsif @message['content']['content']
|
38
|
+
@message['content']['content']
|
39
|
+
else
|
40
|
+
@message['content'].to_json
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def icon
|
45
|
+
@icon ||= @client.avatar(@message['user'])
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'tmpdir'
|
2
|
+
|
3
|
+
class FlowdockNotifications::Notifier
|
4
|
+
# send out notifications for new messages on throughout all flows
|
5
|
+
def self.send
|
6
|
+
store = FlowdockNotifications::SimpleStore.new
|
7
|
+
client = FlowdockNotifications::FlowdockClient.new
|
8
|
+
|
9
|
+
client.flow_names.each do |flow_name|
|
10
|
+
# if there are no last retrieved messages, this must be the first run and there are no notifications yet:
|
11
|
+
# simply store the latest message id so we can find new messages the next time
|
12
|
+
flow_stored_vars = store.get(flow_name)
|
13
|
+
last_id = flow_stored_vars ? flow_stored_vars['last_retrieved_id'] : nil
|
14
|
+
unless last_id
|
15
|
+
store.set(flow_name, { 'last_retrieved_id' => client.latest_message_id(flow_name) })
|
16
|
+
next
|
17
|
+
end
|
18
|
+
|
19
|
+
new_messages = client.messages_since(flow_name, last_id)
|
20
|
+
new_messages.each do |msg|
|
21
|
+
notification = FlowdockNotifications::MessageNotification.new(client, flow_name, msg)
|
22
|
+
notification.show!
|
23
|
+
end
|
24
|
+
|
25
|
+
unless new_messages.empty?
|
26
|
+
store.set(flow_name, { 'last_retrieved_id' => new_messages.map {|m| m['id'].to_i}.max })
|
27
|
+
end
|
28
|
+
end
|
29
|
+
true
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# simple JSON variable store to a tempfile
|
2
|
+
require 'json'
|
3
|
+
class FlowdockNotifications::SimpleStore
|
4
|
+
def initialize
|
5
|
+
if File.exists?(temp_filename) && File.size(temp_filename) > 0
|
6
|
+
@store = JSON.parse(IO.read(temp_filename))
|
7
|
+
else
|
8
|
+
@store = {}
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def get(variable)
|
13
|
+
@store[variable]
|
14
|
+
end
|
15
|
+
|
16
|
+
def set(variable, value)
|
17
|
+
@store[variable] = value
|
18
|
+
File.open(temp_filename, "w") { |f| f.write(@store.to_json) }
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
def temp_filename
|
23
|
+
"#{Dir.tmpdir}/flowdock-notifications.json"
|
24
|
+
end
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: flowdock-notifications
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kent Mewhort
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-03-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: flowdock
|
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: notify
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.9'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.9'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
description:
|
70
|
+
email:
|
71
|
+
- kent@openissues.ca
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- Gemfile
|
78
|
+
- LICENSE.txt
|
79
|
+
- README.md
|
80
|
+
- Rakefile
|
81
|
+
- bin/flowdock-notifications
|
82
|
+
- bin/setup
|
83
|
+
- flowdock-notifications.gemspec
|
84
|
+
- lib/flowdock-notifications.rb
|
85
|
+
- lib/flowdock-notifications/flowdock_client.rb
|
86
|
+
- lib/flowdock-notifications/message_notification.rb
|
87
|
+
- lib/flowdock-notifications/notifier.rb
|
88
|
+
- lib/flowdock-notifications/simple_store.rb
|
89
|
+
- lib/flowdock-notifications/version.rb
|
90
|
+
homepage: http://github.com/kmewhort/flowdock-notifications
|
91
|
+
licenses:
|
92
|
+
- MIT
|
93
|
+
metadata: {}
|
94
|
+
post_install_message:
|
95
|
+
rdoc_options: []
|
96
|
+
require_paths:
|
97
|
+
- lib
|
98
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: '0'
|
108
|
+
requirements: []
|
109
|
+
rubyforge_project:
|
110
|
+
rubygems_version: 2.4.5
|
111
|
+
signing_key:
|
112
|
+
specification_version: 4
|
113
|
+
summary: Cross-platform desktop notifications for Flowdock
|
114
|
+
test_files: []
|