slack-peoplepuller 0.3.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 600bbbb8f915f137c87b614962d10d412cdd4c2e
4
+ data.tar.gz: ae7581045243e6fa22803e3300406010b4b301d1
5
+ SHA512:
6
+ metadata.gz: afee64a3d071bf79e17889c2d9a8a263c1e94bb094e58cdd54f825cde14c454f28af216a68205e60c7235bd6bcf49a4e4b9fd36bf46a555e2f31ca0590100f69
7
+ data.tar.gz: ef8f711b49ead5fe0bc15ed3c54e26c906e7bcee7024feed0d77b6e24d2d235f29b4b7507f7ce9e15af3b7f8563fab63d385285de1dd207cb42f5cf24d4ba0cc
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in slack-peoplepuller.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Jonah Hirsch
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,44 @@
1
+
2
+ # Slack::Peoplepuller
3
+
4
+ Pulls User's Slack Profile information into a Hash
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'slack-peoplepuller'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install slack-peoplepuller
21
+
22
+ ## Usage
23
+
24
+ ```ruby
25
+ Slack::Peoplepuller.configure do |config|
26
+ config.slack_api_token = ENV['SLACK_API_TOKEN']
27
+ end
28
+ people = Slack::Peoplepuller.pull(['Group Name', 'Other Group Name'])
29
+ # [{:name=>"John Smith", :image=>"http://foo.com/image.jpg", :title=>"Manager"}, {:name=>"Jane Doe", :image=>"http://bar.com/image.png", :title=>"Developer"}]
30
+
31
+ ```
32
+ ## Development
33
+
34
+ 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).
35
+
36
+ ## Contributing
37
+
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/slack-peoplepuller.
39
+
40
+
41
+ ## License
42
+
43
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
44
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,27 @@
1
+ require 'slack/peoplepuller/version'
2
+ require 'slack/peoplepuller/configuration'
3
+ require 'slack-ruby-client'
4
+
5
+ module Slack
6
+ module Peoplepuller
7
+ Slack.configure do |config|
8
+ config.token = ENV['SLACK_API_TOKEN']
9
+ end
10
+
11
+ def self.pull(groups_to_load)
12
+ client = Slack::Web::Client.new
13
+ slack_groups = client.usergroups_list(include_users: true)
14
+ people = []
15
+ groups_to_load.each do |group|
16
+ group = slack_groups.usergroups.find { |slack_group| slack_group.name == group }
17
+ raise "Group #{search_group} not found" if group.nil?
18
+ people += group.users
19
+ end
20
+
21
+ people.map do |person|
22
+ profile = client.users_info(user: person).user.profile
23
+ { name: profile.real_name_normalized, image: profile.image_original, title: profile.title }
24
+ end.find_all { |person| person.values.all? { |val| val != '' && val != nil } }
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,21 @@
1
+ # :reek:Attribute
2
+ module Slack
3
+ module Peoplepuller
4
+ class << self
5
+ attr_accessor :configuration
6
+ end
7
+
8
+ def self.configure
9
+ self.configuration ||= Configuration.new
10
+ yield(configuration)
11
+ end
12
+
13
+ class Configuration
14
+ attr_accessor :slack_api_token
15
+
16
+ def initialize
17
+ @slack_api_token = ''
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,5 @@
1
+ module Slack
2
+ module Peoplepuller
3
+ VERSION = '0.3.0'
4
+ end
5
+ end
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'slack/peoplepuller/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "slack-peoplepuller"
8
+ spec.version = Slack::Peoplepuller::VERSION
9
+ spec.authors = ["Jonah Hirsch"]
10
+ spec.email = ["jonahwh@gmail.com"]
11
+
12
+ spec.summary = %q{Get profile data for usergroups in Slack}
13
+ spec.homepage = "https://github.com/crazydog115/slack-peoplepuller"
14
+ spec.license = 'MIT'
15
+
16
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
17
+ # delete this section to allow pushing this gem to any host.
18
+ if spec.respond_to?(:metadata)
19
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
20
+ else
21
+ raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
22
+ end
23
+
24
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ spec.require_paths = ['lib']
26
+
27
+ spec.add_development_dependency "bundler", "~> 1.11"
28
+ spec.add_development_dependency "rake", "~> 10.0"
29
+
30
+ spec.add_runtime_dependency 'slack-ruby-client'
31
+ end
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: slack-peoplepuller
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.0
5
+ platform: ruby
6
+ authors:
7
+ - Jonah Hirsch
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-06-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: slack-ruby-client
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description:
56
+ email:
57
+ - jonahwh@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - lib/slack/peoplepuller.rb
68
+ - lib/slack/peoplepuller/configuration.rb
69
+ - lib/slack/peoplepuller/version.rb
70
+ - slack-peoplepuller.gemspec
71
+ homepage: https://github.com/crazydog115/slack-peoplepuller
72
+ licenses:
73
+ - MIT
74
+ metadata:
75
+ allowed_push_host: https://rubygems.org
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.3
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: Get profile data for usergroups in Slack
96
+ test_files: []
97
+ has_rdoc: