rsplunk 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gemtest ADDED
File without changes
data/History.txt ADDED
@@ -0,0 +1,3 @@
1
+
2
+
3
+
data/Manifest.txt ADDED
@@ -0,0 +1,10 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.txt
4
+ Rakefile
5
+ bin/rsplunk
6
+ lib/rsplunk.rb
7
+ lib/rsplunk/auth.rb
8
+ spec/spec_helper.rb
9
+ spec/rsplunk_spec.rb
10
+ test/test_rsplunk.rb
data/README.txt ADDED
@@ -0,0 +1,56 @@
1
+ = rSplunk
2
+
3
+ == DESCRIPTION:
4
+
5
+ This is a gem to facilitate Splunk searches and indexing.
6
+
7
+ == SYNOPSIS:
8
+
9
+ require 'splunk'
10
+
11
+ foo = Rsplunk::Auth.new('HOST', PORT)
12
+ foo.token('email address', 'password')
13
+
14
+ == REQUIREMENTS:
15
+
16
+ Access to a working Splunk environment.
17
+
18
+ == INSTALL:
19
+
20
+ gem install rsplunk
21
+
22
+ == Upcoming Features:
23
+ * As of now, receiving tokens is the only function
24
+ * Full search capabilities are on the horizon
25
+
26
+ == Contributing to rSplunk
27
+
28
+ * Start a feature/bugfix branch.
29
+ * Commit and push until you are happy with your contribution.
30
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
31
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
32
+
33
+ == LICENSE:
34
+
35
+ (The MIT License)
36
+
37
+ Copyright (c) 2012 Ben Woodall
38
+
39
+ Permission is hereby granted, free of charge, to any person obtaining
40
+ a copy of this software and associated documentation files (the
41
+ 'Software'), to deal in the Software without restriction, including
42
+ without limitation the rights to use, copy, modify, merge, publish,
43
+ distribute, sublicense, and/or sell copies of the Software, and to
44
+ permit persons to whom the Software is furnished to do so, subject to
45
+ the following conditions:
46
+
47
+ The above copyright notice and this permission notice shall be
48
+ included in all copies or substantial portions of the Software.
49
+
50
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
51
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
52
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
53
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
54
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
55
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
56
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,20 @@
1
+ # -*- ruby -*-
2
+
3
+ require 'rubygems'
4
+ require 'hoe'
5
+
6
+ # Hoe.plugin :compiler
7
+ # Hoe.plugin :gem_prelude_sucks
8
+ # Hoe.plugin :inline
9
+ # Hoe.plugin :minitest
10
+ # Hoe.plugin :racc
11
+ # Hoe.plugin :rubyforge
12
+
13
+ Hoe.spec 'rsplunk' do
14
+
15
+ developer('Ben Woodall', 'ben.woodall@theplatform.com')
16
+
17
+ end
18
+
19
+
20
+
data/bin/rsplunk ADDED
@@ -0,0 +1 @@
1
+ #!/usr/bin/env ruby
@@ -0,0 +1,28 @@
1
+ module Rsplunk
2
+
3
+ class Auth
4
+
5
+ def initialize(host, port)
6
+ @host = host
7
+ @port = port
8
+ end
9
+
10
+ attr_accessor :host, :port
11
+
12
+ # Initial SSL request
13
+ def splunk_ssl_request(path, data = nil, headers = nil)
14
+ http = Net::HTTP.new(@host, @port)
15
+ http.use_ssl = true
16
+ http.verify_mode = OpenSSL::SSL::VERIFY_NONE
17
+ http.post(path, data, headers).body
18
+ end
19
+
20
+ # Grab token with username and password
21
+ def token(user, pass)
22
+ doc = Hpricot(splunk_ssl_request("/services/auth/login", "username=#{user}&password=#{pass}"))
23
+ (doc/"//sessionkey").inner_html
24
+ end
25
+
26
+ end
27
+
28
+ end
data/lib/rsplunk.rb ADDED
@@ -0,0 +1,13 @@
1
+ $:.unshift( File.dirname( __FILE__ ))
2
+
3
+ require 'net/https'
4
+ require 'rubygems'
5
+ require 'hpricot'
6
+
7
+ module Rsplunk
8
+
9
+ VERSION = '0.1.1'
10
+
11
+ require 'rsplunk/auth'
12
+
13
+ end
@@ -0,0 +1,8 @@
1
+ require "rsplunk"
2
+
3
+ describe Rsplunk, "example test" do
4
+ it "should have a test written for it" do
5
+ pending "WRITE TESTS"
6
+ end
7
+ end
8
+
@@ -0,0 +1,5 @@
1
+ SPEC_DIR = File.dirname(__FILE__)
2
+ lib_path = File.expand_path("#{SPEC_DIR}/../lib")
3
+ $LOAD_PATH.unshift lib_path unless $LOAD_PATH.include?(lib_path)
4
+
5
+ require 'rsplunk'
@@ -0,0 +1,2 @@
1
+ class Rsplunk < MiniTest::Unit::TestCase
2
+ end
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rsplunk
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Ben Woodall
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-03-30 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rdoc
16
+ requirement: &72363840 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '3.10'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *72363840
25
+ - !ruby/object:Gem::Dependency
26
+ name: hoe
27
+ requirement: &72363500 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: '3.0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *72363500
36
+ description: This is a gem to facilitate Splunk searches and indexing.
37
+ email:
38
+ - ben.woodall@theplatform.com
39
+ executables:
40
+ - rsplunk
41
+ extensions: []
42
+ extra_rdoc_files:
43
+ - History.txt
44
+ - Manifest.txt
45
+ - README.txt
46
+ files:
47
+ - History.txt
48
+ - Manifest.txt
49
+ - README.txt
50
+ - Rakefile
51
+ - bin/rsplunk
52
+ - lib/rsplunk.rb
53
+ - lib/rsplunk/auth.rb
54
+ - spec/spec_helper.rb
55
+ - spec/rsplunk_spec.rb
56
+ - test/test_rsplunk.rb
57
+ - .gemtest
58
+ homepage:
59
+ licenses: []
60
+ post_install_message:
61
+ rdoc_options:
62
+ - --main
63
+ - README.txt
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ none: false
68
+ requirements:
69
+ - - ! '>='
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project: rsplunk
80
+ rubygems_version: 1.8.11
81
+ signing_key:
82
+ specification_version: 3
83
+ summary: This is a gem to facilitate Splunk searches and indexing.
84
+ test_files:
85
+ - test/test_rsplunk.rb