easy_model_selects 0.9.0 → 0.9.9.1
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 +4 -4
- data/README.md +5 -1
- data/lib/easy_model_selects.rb +127 -61
- data/lib/easy_model_selects/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a818e8c19d1a52a71e1b1fccfa322149a5e313f8
|
4
|
+
data.tar.gz: 7f2a9832f1a1c9ee099a4fefaf1442af5c998d46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 09ef4e403148bf8d0808a360ab2400ae08137a9cd494e87064b53544066eee042091230a58eae478baad3f9cbc25af385060e015b26bd81a89be1449d5a75137
|
7
|
+
data.tar.gz: 35b3f637b2f4eb35ed4d0d23c55aa63748f1695ff092810d0196a4fd99938a9618d2a309aab46655dd9d053e935169c7edf4e4f108d36bdc65bdce531af7e6ae
|
data/README.md
CHANGED
@@ -22,7 +22,11 @@ Or install it yourself as:
|
|
22
22
|
|
23
23
|
## Usage
|
24
24
|
|
25
|
-
|
25
|
+
#!!!start api settings
|
26
|
+
ressource_name = "Appointment" #capitalized makes it a bit faster, but it does not need to be done // you need to have a controller, model and an entity in place with this name
|
27
|
+
#right down what you want, ressource_method or all
|
28
|
+
operations = "all"
|
29
|
+
EasyApiOperations.set_up_api(self, ressource_name, operations)
|
26
30
|
|
27
31
|
## Development
|
28
32
|
|
data/lib/easy_model_selects.rb
CHANGED
@@ -1,78 +1,144 @@
|
|
1
1
|
require "easy_model_selects/version"
|
2
2
|
|
3
3
|
module EasyModelSelects
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
where_condition[0] = delete_last_and(where_condition[0])
|
12
|
-
where_condition
|
13
|
-
end
|
4
|
+
@@modifiers = [{">>"=> ">","<<"=> "<","=="=> "=","<="=> "<=",">="=> ">=", "$N" => "!=", "$L"=> "LIKE", "$I"=> "IN"},
|
5
|
+
{">>"=> "$gt","<<"=> "$lt","=="=> "$eq","<="=> "$lte",">="=> "$gte", "$N"=> "$ne", "$I"=> "$in", "Value splitting for Array for $in"=>"$/"}]
|
6
|
+
#0 => sql
|
7
|
+
#1 => mongodb
|
8
|
+
#$/ to split arrays for $I
|
9
|
+
@@operators = [{"$and"=>"and","$xor"=>"or"},
|
10
|
+
{"$and"=>"$and","$xor"=>"$or"}]
|
14
11
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
operatorkey = operators.keys.first
|
26
|
-
else
|
27
|
-
if param_value.include? operators.keys.last
|
28
|
-
operatorkey = operators.keys.last
|
29
|
-
else
|
30
|
-
operatorkey = "!and!"
|
12
|
+
#better gem functionality
|
13
|
+
def self.set_configurations(options = {})
|
14
|
+
changed = 0
|
15
|
+
if options.include?(:db)
|
16
|
+
if options[:db] == :mongodb
|
17
|
+
@@db = 1
|
18
|
+
else
|
19
|
+
@@db = 0
|
20
|
+
end
|
21
|
+
changed = changed + 1
|
31
22
|
end
|
23
|
+
"#{changed} #{changed > 1 ? "Configurations" : "Configuration"} changed."
|
32
24
|
end
|
33
|
-
|
34
|
-
|
35
|
-
if
|
36
|
-
|
37
|
-
|
25
|
+
|
26
|
+
def self.modifiers(options = {})
|
27
|
+
if options.include?(:db)
|
28
|
+
db = options[:db] == :mongodb ? 1 : 0
|
29
|
+
else
|
30
|
+
db = 0
|
38
31
|
end
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
32
|
+
@@modifiers[db]
|
33
|
+
end
|
34
|
+
def self.operators(options = {})
|
35
|
+
if options.include?(:db)
|
36
|
+
db = options[:db] == :mongodb ? 1 : 0
|
44
37
|
else
|
45
|
-
|
38
|
+
db = 0
|
46
39
|
end
|
47
|
-
|
48
|
-
where_condition = get_where_condition(param_name, param_value_sep, where_condition, modifier, operators[operatorkey])
|
40
|
+
@@operators[db]
|
49
41
|
end
|
50
42
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
43
|
+
#actual key funtions
|
44
|
+
def self.get_where_statement_from_param(params, options = {})
|
45
|
+
#options handling
|
46
|
+
if options.include?(:db)
|
47
|
+
@@db = options[:db] == :mongodb ? 1 : 0
|
48
|
+
else
|
49
|
+
@@db = 0
|
50
|
+
end
|
51
|
+
|
52
|
+
#prepare where statemant out of names and values in an array
|
53
|
+
@@db == 0 ? where_condition = [] : where_condition = {}
|
54
|
+
params.each do |param_name, param_value|
|
55
|
+
where_condition = get_where_statement(param_name, param_value, where_condition)
|
56
|
+
end
|
57
|
+
#delete last connection in sql queries
|
58
|
+
if @@db == 0
|
59
|
+
where_condition[0] = delete_last_and(where_condition[0])
|
60
|
+
end
|
61
|
+
where_condition
|
62
|
+
end
|
63
|
+
|
64
|
+
def self.get_where_statement(param_name, param_value, where_condition)
|
65
|
+
|
66
|
+
#care for easy writing
|
67
|
+
param_name = "updated_at" if param_name == "modified_since"
|
68
|
+
|
69
|
+
#care for operator staff
|
70
|
+
operatorkey = "$and"
|
71
|
+
modifier = @@modifiers[@@db]["=="]
|
72
|
+
if (defined? param_value.include?) == nil #fixnum and integer do not have include function
|
73
|
+
param_value = [param_value]
|
74
|
+
end
|
75
|
+
|
76
|
+
if param_value.include? @@operators[@@db].keys.last#each element recommendet, but not necessary at the moment
|
77
|
+
operatorkey = @@operators[@@db].keys.last
|
78
|
+
end
|
79
|
+
|
80
|
+
param_size = param_value.split(operatorkey).size
|
81
|
+
param_value.split(operatorkey).each_with_index do |param_value_sep, index|
|
82
|
+
if @@db == 0 and index == param_size - 1
|
83
|
+
#operator to next statement needs to be and not or, or can just be between a condition for one attribute
|
84
|
+
operatorkey = "$and"
|
85
|
+
end
|
86
|
+
|
87
|
+
#care for modifiers
|
88
|
+
if @@modifiers[@@db].key? param_value_sep[0..1]
|
89
|
+
modifier = @@modifiers[@@db][param_value_sep[0..1]]
|
90
|
+
param_value_sep = param_value_sep[2..param_value_sep.length]
|
91
|
+
end
|
56
92
|
|
57
|
-
|
58
|
-
where_condition[0] = delete_last_and(where_condition[0])
|
59
|
-
where_condition[0] = "#{where_condition[0]} or "
|
93
|
+
where_condition = get_where_condition(param_name, param_value_sep, where_condition, modifier, @@operators[@@db][operatorkey])
|
60
94
|
end
|
95
|
+
|
96
|
+
#care for array staff
|
97
|
+
#if array param_value, the staff should be selected in more optimized way: (selecting every given possibility instead of just one)
|
98
|
+
if @@db == 0
|
99
|
+
if param_value.include? "{" and param_value.include? "}"
|
100
|
+
array_to_be_found = param_value.clone
|
101
|
+
array_to_be_found.remove!("{","}")
|
61
102
|
|
62
|
-
|
63
|
-
|
64
|
-
|
103
|
+
if !where_condition[0].nil?
|
104
|
+
where_condition[0] = delete_last_and(where_condition[0])
|
105
|
+
where_condition[0] = "#{where_condition[0]} or "
|
106
|
+
end
|
107
|
+
|
108
|
+
array_to_be_found.split(",").each do |array_value|
|
109
|
+
where_condition[0] = "#{where_condition[0]}(?) = ANY (#{param_name}) or "#question
|
110
|
+
where_condition.push "#{array_value}" #values
|
111
|
+
end
|
112
|
+
end
|
113
|
+
else
|
114
|
+
#no mongodb array support yet
|
65
115
|
end
|
116
|
+
#return
|
117
|
+
where_condition
|
118
|
+
end
|
119
|
+
def self.get_where_condition(param_name, param_value, where_condition, modifier, operator)
|
120
|
+
if @@db == 0
|
121
|
+
where_condition[0] = "#{where_condition[0]}#{param_name} #{modifier} (?) #{operator} "#question
|
122
|
+
where_condition.push (modifier != "IN" ? "#{param_value}" : param_value.split("$/") )
|
123
|
+
else
|
124
|
+
where_condition["#{operator}"] = [] unless where_condition.include?("#{operator}")
|
125
|
+
where_condition["#{operator}"] << {}
|
126
|
+
where_condition["#{operator}"][where_condition["#{operator}"].size - 1]["#{param_name}"] = {}
|
127
|
+
where_condition["#{operator}"][where_condition["#{operator}"].size - 1]["#{param_name}"]["#{modifier}"] = (modifier != "$in" ? "#{param_value}" : param_value.split("$/") )
|
128
|
+
end
|
129
|
+
#return
|
130
|
+
where_condition
|
131
|
+
end
|
132
|
+
|
133
|
+
# db.inventory.where( {
|
134
|
+
# $and : [
|
135
|
+
# { $or : [ { price : 0.99 }, { price : 1.99 } ] },
|
136
|
+
# { $or : [ { sale : true }, { qty : { $lt : 20 } } ] }
|
137
|
+
# ]
|
138
|
+
# } )
|
139
|
+
# db.inventory.find( { qty: { $in: [ 5, 15 ] } } )
|
140
|
+
|
141
|
+
def self.delete_last_and(wrong_and_at_the_end)
|
142
|
+
no_and_at_the_end = wrong_and_at_the_end.from(0).to(wrong_and_at_the_end.length - 5)
|
66
143
|
end
|
67
|
-
|
68
|
-
#return
|
69
|
-
where_condition
|
70
|
-
end
|
71
|
-
def self.get_where_condition(param_name, param_value, where_condition, modifier, operator)
|
72
|
-
where_condition[0] = "#{where_condition[0]}#{param_name} #{modifier} (?) #{operator} "#question
|
73
|
-
where_condition.push "#{param_value}" #values
|
74
|
-
end
|
75
|
-
def self.delete_last_and(wrong_and_at_the_end)
|
76
|
-
no_and_at_the_end = wrong_and_at_the_end.from(0).to(wrong_and_at_the_end.length - 5)
|
77
|
-
end
|
78
144
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy_model_selects
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bjoern Moeller / Christian Hentke
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|