Class: Parse::Client
- Inherits:
-
Object
show all
- Defined in:
- lib/parse/client.rb
Constant Summary
collapse
- API_SERVER =
'api.parse.com'
- API_VERSION =
1
- @@default_client =
nil
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
-
#build_headers(opt_headers = {}) ⇒ Object
-
#call_api(method, endpoint, body = nil, opt_headers = {}, &block) ⇒ Object
-
#call_function(name, param) ⇒ Object
-
#create(parse_class_name, values, &block) ⇒ Object
-
#delete(parse_class_name, parse_object_id, &block) ⇒ Object
-
#find(parse_class_name, object_id_or_conditions, opts = {}) ⇒ Object
-
#find_by_id(parse_class_name, object_id, opts = {}) ⇒ Object
-
#find_by_query(parse_class_name, conditions) ⇒ Object
-
#initialize(application_id = nil, api_key = nil, master_key = nil, http_client = nil) ⇒ Client
constructor
A new instance of Client.
-
#log_in(username, password, &block) ⇒ Object
-
#log_out ⇒ Object
-
#method_missing(name, *args, &block) ⇒ Object
-
#sign_up(username, password, opts = {}, &block) ⇒ Object
-
#update(parse_class_name, parse_object_id, values, &block) ⇒ Object
-
#use_master_key(&block) ⇒ Object
-
#use_master_key! ⇒ Object
-
#use_master_key=(val) ⇒ Object
Constructor Details
#initialize(application_id = nil, api_key = nil, master_key = nil, http_client = nil) ⇒ Client
Returns a new instance of Client.
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/parse/client.rb', line 18
def initialize application_id=nil, api_key=nil, master_key=nil, http_client=nil
@application_id = application_id || Parse.application_id
@api_key = api_key || Parse.api_key
@master_key = master_key || Parse.master_key
if @application_id.nil? || @api_key.nil?
raise ArgumentError.new <<-EOS.gsub(/^ +/, '')
Both Application ID and API Key must be set.
ex. Parse.credentials application_id: APPLICATION_ID, api_key: API_KEY
EOS
end
@http_client = http_client || Parse::HttpClient.new(API_SERVER)
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Object
187
188
189
|
# File 'lib/parse/client.rb', line 187
def method_missing name, *args, &block
call_function name, args.first
end
|
Instance Attribute Details
#http_client ⇒ Object
Returns the value of attribute http_client.
8
9
10
|
# File 'lib/parse/client.rb', line 8
def http_client
@http_client
end
|
#master_key ⇒ Object
Returns the value of attribute master_key.
8
9
10
|
# File 'lib/parse/client.rb', line 8
def master_key
@master_key
end
|
#session_token ⇒ Object
Returns the value of attribute session_token.
8
9
10
|
# File 'lib/parse/client.rb', line 8
def session_token
@session_token
end
|
Class Method Details
10
11
12
|
# File 'lib/parse/client.rb', line 10
def self.default
@@default_client ||= new
end
|
.default=(default_client) ⇒ Object
14
15
16
|
# File 'lib/parse/client.rb', line 14
def self.default= default_client
@@default_client = default_client
end
|
Instance Method Details
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# File 'lib/parse/client.rb', line 40
def ={}
= {
'X-Parse-Application-Id' => @application_id,
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'User-Agent' => 'A parse.com client for ruby'
}
if @use_master_key
['X-Parse-Master-Key'] = @master_key
else
['X-Parse-REST-API-Key'] = @api_key
end
['X-Parse-Session-Token'] = @session_token if @session_token
.update
end
|
#call_api(method, endpoint, body = nil, opt_headers = {}, &block) ⇒ Object
31
32
33
34
35
36
37
38
|
# File 'lib/parse/client.rb', line 31
def call_api method, endpoint, body=nil, ={}, &block
endpoint = "/#{API_VERSION}/#{endpoint}" unless endpoint[0] == '/'
=
if body.is_a?(Hash)
body = Hash[*(body.to_a.map{|k, v| [k, URI.encode(v)]}.flatten)].to_json
end
@http_client.request method, endpoint, , body, &block
end
|
#call_function(name, param) ⇒ Object
145
146
147
148
149
150
151
152
153
154
|
# File 'lib/parse/client.rb', line 145
def call_function name, param
func_name = Parse.auto_snake_case ? name.to_s.gsub(/_([a-z])/) {$1.upcase} : name
call_api :post, "functions/#{func_name}", param.to_json do |resp_body|
if resp_body.has_key? 'result'
resp_body['result']
else
raise StandartError.new 'unknown error'
end
end
end
|
#create(parse_class_name, values, &block) ⇒ Object
133
134
135
|
# File 'lib/parse/client.rb', line 133
def create parse_class_name, values, &block
call_api :post, "classes/#{parse_class_name}", values.to_json, &block
end
|
#delete(parse_class_name, parse_object_id, &block) ⇒ Object
141
142
143
|
# File 'lib/parse/client.rb', line 141
def delete parse_class_name, parse_object_id, &block
call_api :delete, "classes/#{parse_class_name}/#{parse_object_id}", &block
end
|
#find(parse_class_name, object_id_or_conditions, opts = {}) ⇒ Object
69
70
71
72
73
74
75
76
77
78
79
80
|
# File 'lib/parse/client.rb', line 69
def find parse_class_name, object_id_or_conditions, opts={}
case object_id_or_conditions
when :all
find_by_query parse_class_name, opts
when String, Symbol
find_by_id parse_class_name, object_id_or_conditions, opts
when Hash
find_by_query parse_class_name, object_id_or_conditions
else
raise ArgumentError.new('the first argument should be a string, a symbol, or a hash.')
end
end
|
#find_by_id(parse_class_name, object_id, opts = {}) ⇒ Object
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# File 'lib/parse/client.rb', line 82
def find_by_id parse_class_name, object_id, opts={}
call_api :get, "classes/#{parse_class_name}/#{object_id}" do |resp_body|
if opts.has_key? :include
included_keys = [opts[:include]].flatten
included_keys.each do |included_key|
resp_body[included_key].tap do |pointer|
if pointer['__type'] == 'Pointer'
pointer['body'] = self.find_by_id pointer['className'], pointer['objectId']
else
raise ArgumentError.new('included column should be a pointer.')
end
end
end
end
resp_body
end
end
|
#find_by_query(parse_class_name, conditions) ⇒ Object
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
# File 'lib/parse/client.rb', line 100
def find_by_query parse_class_name, conditions
query = Query.new parse_class_name, self
query.limit conditions[:limit] if conditions.has_key? :limit
query.skip conditions[:skip] if conditions.has_key? :skip
query.count conditions[:count] if conditions.has_key? :count
if conditions.has_key? :order
order = conditions[:order]
order = [order] unless order.is_a? Array
query.order order
end
if conditions.has_key? :keys
keys = conditions[:keys]
keys = [keys] unless keys.is_a? Array
query.keys keys
end
if conditions.has_key? :include
include = conditions[:include]
include = [include] unless include.is_a? Array
query.include include
end
if conditions.has_key? :where
case condition = conditions[:where]
when Hash
query.where condition
when Proc
query.where condition
else
raise 'wrong condition'
end
end
query.invoke
end
|
#log_in(username, password, &block) ⇒ Object
60
61
62
63
|
# File 'lib/parse/client.rb', line 60
def log_in username, password, &block
call_api :get, "login?username=#{URI.encode username}&password=#{
URI.encode password}", nil, &block
end
|
65
66
67
|
# File 'lib/parse/client.rb', line 65
def log_out
@session_token = nil
end
|
#sign_up(username, password, opts = {}, &block) ⇒ Object
56
57
58
|
# File 'lib/parse/client.rb', line 56
def sign_up username, password, opts={}, &block
call_api :post, 'users', {'username' => username, 'password' => password}.update(opts || {}), &block
end
|
#update(parse_class_name, parse_object_id, values, &block) ⇒ Object
137
138
139
|
# File 'lib/parse/client.rb', line 137
def update parse_class_name, parse_object_id, values, &block
call_api :put, "classes/#{parse_class_name}/#{parse_object_id}", values.to_json, &block
end
|
#use_master_key(&block) ⇒ Object
165
166
167
168
169
170
171
172
173
174
175
|
# File 'lib/parse/client.rb', line 165
def use_master_key &block
return @use_master_key unless block
tmp, @use_master_key = @use_master_key, true
begin
ret = block.call
ensure
@use_master_key = tmp
end
ret
end
|
#use_master_key! ⇒ Object
156
157
158
|
# File 'lib/parse/client.rb', line 156
def use_master_key!
self.use_master_key = true
end
|
#use_master_key=(val) ⇒ Object
160
161
162
163
|
# File 'lib/parse/client.rb', line 160
def use_master_key= val
raise ArgumentError.new('master_key is not set.') if val && !@master_key
@use_master_key = val
end
|