springnote_client 0.0.2

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.
data/History.txt ADDED
@@ -0,0 +1,7 @@
1
+ = 0.0.2 2008-06-10
2
+ * gem published
3
+
4
+ == 0.0.1 2008-03-27
5
+
6
+ * 1 major enhancement:
7
+ * Initial release
data/License.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 FIXME full name
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Manifest.txt ADDED
@@ -0,0 +1,7 @@
1
+ History.txt
2
+ License.txt
3
+ Manifest.txt
4
+ README.txt
5
+ lib/springnote_client.rb
6
+ lib/springnote_client/base.rb
7
+ lib/springnote_client/version.rb
data/README.txt ADDED
@@ -0,0 +1,72 @@
1
+ = springnote_client
2
+
3
+ * Homepage: http://myruby.net/pages/1329390
4
+ * Author: deepblue(http://myruby.net)
5
+
6
+ == DESCRIPTION:
7
+
8
+ Springnote Client Library without ActiveResource
9
+
10
+ == FEATURES/PROBLEMS:
11
+
12
+ * This is a technical preview version. APIs can be changed.
13
+
14
+ == SYNOPSIS:
15
+
16
+ # Instantiate a note
17
+ note = Springnote('rubyseminar',
18
+ :app_key => '__YOUR_APP_KEY__',
19
+ :user_openid => 'http://openid.myid.net/',
20
+ :user_key => '__YOUR_USER_KEY__')
21
+
22
+ # Get a page
23
+ page = note.pages.find(1325546)
24
+ puts page.title
25
+
26
+ # Update a page
27
+ page.title += '_'
28
+ page.source += '_'
29
+ page.save
30
+
31
+ # Create a page
32
+ page = note.pages.build(:title => Time.now.to_s, :source => Time.now.to_s, :relation_is_part_of => 1329222)
33
+ page.save
34
+
35
+ # Get several pages
36
+ pages = note.pages.find(1325546, 1325544)
37
+ puts pages.map{|page| page.title}.join(',')
38
+
39
+
40
+ == REQUIREMENTS:
41
+
42
+ * rest_client
43
+ * active_support
44
+
45
+ == INSTALL:
46
+
47
+ * sudo gem install springnote_client
48
+
49
+ == LICENSE:
50
+
51
+ (The MIT License)
52
+
53
+ Copyright (c) 2008 Bryan Kang
54
+
55
+ Permission is hereby granted, free of charge, to any person obtaining
56
+ a copy of this software and associated documentation files (the
57
+ 'Software'), to deal in the Software without restriction, including
58
+ without limitation the rights to use, copy, modify, merge, publish,
59
+ distribute, sublicense, and/or sell copies of the Software, and to
60
+ permit persons to whom the Software is furnished to do so, subject to
61
+ the following conditions:
62
+
63
+ The above copyright notice and this permission notice shall be
64
+ included in all copies or substantial portions of the Software.
65
+
66
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
67
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
68
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
69
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
70
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
71
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
72
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,110 @@
1
+ module RestClient
2
+ class Resource
3
+ attr_accessor :url
4
+ end
5
+ end
6
+
7
+
8
+ module Springnote
9
+ class CallProxy
10
+ def initialize(callee, *params)
11
+ @callee, @params = callee, params
12
+ end
13
+
14
+ def method_missing(method, *params, &block)
15
+ @callee.send(method, *(params + @params), &block)
16
+ end
17
+ end
18
+
19
+ class Resource < RestClient::Resource
20
+ XML = 'application/xml'
21
+ attr_accessor :hash, :holder
22
+
23
+ class << self
24
+ def build(hsh, holder)
25
+ new_resource(collection_url(holder), holder, hsh)
26
+ end
27
+
28
+ def new_resource(url, holder, hash = nil)
29
+ ret = new(url, holder.username, holder.password)
30
+ ret.holder = holder
31
+
32
+ if block_given?
33
+ ret.hash = yield(ret)
34
+ elsif hash
35
+ ret.hash = hash
36
+ end
37
+
38
+ ret
39
+ end
40
+
41
+ def element_url(holder, id, params = {})
42
+ holder.url("/#{collection_name}/#{id}", params)
43
+ end
44
+
45
+ def collection_url(holder, params = {})
46
+ holder.url("/#{collection_name}", params)
47
+ end
48
+
49
+ def find(*args)
50
+ holder = args.pop
51
+
52
+ args.length == 1 ?
53
+ find_one(args[0], holder) :
54
+ find_some(args, holder)
55
+ end
56
+
57
+ def find_one(id, holder)
58
+ new_resource(element_url(holder, id), holder) do |ret|
59
+ Hash.from_xml(ret.get(:accept => XML))[ret.singular_name]
60
+ end
61
+ end
62
+
63
+ def find_some(ids, holder)
64
+ ret = new_resource(collection_url(holder, :identifiers => ids.join(','), :detail => true), holder).get(:accept => 'application/xml')
65
+ Hash.from_xml(ret)[collection_name].map do |item|
66
+ new_resource(element_url(holder, item['identifier']), holder, item)
67
+ end
68
+ rescue RuntimeError
69
+ []
70
+ end
71
+ end
72
+
73
+ def method_missing(method, *args)
74
+ str = method.to_s
75
+ str[-1] == ?= ?
76
+ @hash[str[0..-2]] = args[0] :
77
+ @hash[str]
78
+ end
79
+
80
+ def save
81
+ xml = @hash.to_xml(:root => singular_name)
82
+
83
+ if @hash['identifier']
84
+ put xml, :content_type => XML
85
+ else
86
+ ret = post(xml, :content_type => XML)
87
+ @hash = Hash.from_xml(ret)[singular_name]
88
+ self.url = element_url
89
+ end
90
+
91
+ self
92
+ end
93
+
94
+ def element_url
95
+ self.class.element_url(holder, @hash['identifier'])
96
+ end
97
+
98
+ def singular_name
99
+ self.class.singular_name
100
+ end
101
+
102
+ def inspect
103
+ @hash.inspect
104
+ end
105
+
106
+ def to_s
107
+ @hash.to_s
108
+ end
109
+ end
110
+ end
@@ -0,0 +1,9 @@
1
+ module SpringnoteClient #:nodoc:
2
+ module VERSION #:nodoc:
3
+ MAJOR = 0
4
+ MINOR = 0
5
+ TINY = 2
6
+
7
+ STRING = [MAJOR, MINOR, TINY].join('.')
8
+ end
9
+ end
@@ -0,0 +1,47 @@
1
+ %w(rubygems rest_client cgi active_support).each{|lib| require lib}
2
+
3
+ $:.unshift File.dirname(__FILE__)
4
+ require 'springnote_client/base'
5
+
6
+ def Springnote(*params)
7
+ Springnote::Note.new(*params)
8
+ end
9
+
10
+ module Springnote
11
+ class Note
12
+ attr_accessor :name, :config
13
+
14
+ # config should have app_key, user_openid, user_key
15
+ def initialize(name, config)
16
+ @name, @config = name, config
17
+ end
18
+
19
+ def pages
20
+ CallProxy.new(Page, self)
21
+ end
22
+
23
+ def username
24
+ CGI.escape(@config[:user_openid] || 'anonymous')
25
+ end
26
+
27
+ def password
28
+ @config[:user_key] ? "#{@config[:user_key]}.#{@config[:app_key]}" : @config[:app_key]
29
+ end
30
+
31
+ def url(path = '/', params = {})
32
+ query = params.map{|k,v| "#{k}=#{CGI.escape(v.to_s)}"}.join('&')
33
+ "http://api.springnote.com#{path}?domain=#{@name}&#{query}"
34
+ end
35
+ end
36
+
37
+
38
+ class Page < Resource
39
+ def self.singular_name
40
+ 'page'
41
+ end
42
+
43
+ def self.collection_name
44
+ 'pages'
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,2 @@
1
+ require 'test/unit'
2
+ require File.dirname(__FILE__) + '/../lib/springnote_client'
@@ -0,0 +1,11 @@
1
+ require File.dirname(__FILE__) + '/test_helper.rb'
2
+
3
+ class TestSpringnoteClient < Test::Unit::TestCase
4
+
5
+ def setup
6
+ end
7
+
8
+ def test_truth
9
+ assert true
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: springnote_client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Bryan Kang
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-06-11 00:00:00 +09:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Springnote Client
17
+ email:
18
+ - byblue@gmail.com
19
+ executables: []
20
+
21
+ extensions: []
22
+
23
+ extra_rdoc_files:
24
+ - History.txt
25
+ - License.txt
26
+ - Manifest.txt
27
+ - README.txt
28
+ files:
29
+ - History.txt
30
+ - License.txt
31
+ - Manifest.txt
32
+ - README.txt
33
+ - lib/springnote_client.rb
34
+ - lib/springnote_client/base.rb
35
+ - lib/springnote_client/version.rb
36
+ has_rdoc: true
37
+ homepage: http://springnote.rubyforge.org
38
+ post_install_message: ""
39
+ rdoc_options:
40
+ - --main
41
+ - README.txt
42
+ require_paths:
43
+ - lib
44
+ required_ruby_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: "0"
49
+ version:
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: "0"
55
+ version:
56
+ requirements: []
57
+
58
+ rubyforge_project: springnote
59
+ rubygems_version: 1.1.1
60
+ signing_key:
61
+ specification_version: 2
62
+ summary: Springnote Client
63
+ test_files:
64
+ - test/test_helper.rb
65
+ - test/test_springnote_client.rb