-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
emitter.rb
405 lines (367 loc) · 9.51 KB
/
emitter.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
#
# Ronin SQL - A Ruby DSL for crafting SQL Injections.
#
# Copyright (c) 2007-2022 Hal Brodigan (postmodern.mod3 at gmail.com)
#
# This file is part of ronin-sql.
#
# ronin-sql is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ronin-sql is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with ronin-sql. If not, see <https://www.gnu.org/licenses/>.
#
require 'ronin/support/encoding/sql'
module Ronin
module SQL
#
# Generates raw SQL.
#
# @api private
#
class Emitter
# The case to use when emitting keywords
attr_reader :case
# String to use for white-space
attr_reader :space
# Type of String quotes to use
attr_reader :quotes
#
# Initializes the SQL Emitter.
#
# @param [String] space
# String to use for white-space.
#
# @param [:single, :double] quotes
# Type of quotes to use for Strings.
#
# @param [Hash{Symbol => Object}] kwargs
# Emitter options.
#
# @option kwargs [:lower, :upper, :random, nil] :case
# Case for keywords.
#
def initialize(space: ' ', quotes: :single, **kwargs)
@case = kwargs[:case] # HACK: because `case` is a ruby keyword
@space = space
@quotes = quotes
end
#
# Emits a SQL keyword.
#
# @param [Symbol, Array<Symbol>] keyword
# The SQL keyword.
#
# @return [String]
# The raw SQL.
#
def emit_keyword(keyword)
keyword = Array(keyword).join(@space)
case @case
when :upper then keyword.upcase
when :lower then keyword.downcase
when :random
keyword.tap do
(keyword.length / 2).times do
index = rand(keyword.length)
keyword[index] = keyword[index].swapcase
end
end
else
keyword
end
end
#
# Emits a SQL operator.
#
# @param [Array<Symbol>, Symbol] op
# The operator symbol.
#
# @return [String]
# The raw SQL.
#
def emit_operator(op)
case op
when /^\W+$/ then op.to_s
else emit_keyword(op)
end
end
#
# Emits the `NULL` value.
#
# @return [String]
#
def emit_null
emit_keyword(:NULL)
end
#
# Emits a `false` value.
#
# @return [String]
# The raw SQL.
#
def emit_false
"1=0"
end
#
# Emits a `true` value.
#
# @return [String]
# The raw SQL.
#
def emit_true
"1=1"
end
#
# Emits a SQL Integer.
#
# @param [Integer] int
# The Integer.
#
# @return [String]
# The raw SQL.
#
def emit_integer(int)
int.to_s
end
#
# Emits a SQL Decimal.
#
# @param [Float] decimal
# The decimal.
#
# @return [String]
# The raw SQL.
#
def emit_decimal(decimal)
decimal.to_s
end
#
# Emits a SQL String.
#
# @param [String] string
# The String.
#
# @return [String]
# The raw SQL.
#
def emit_string(string)
Support::Encoding::SQL.escape(string, quotes: @quotes)
end
#
# Emits a SQL field.
#
# @param [Field, Symbol, String] field
# The SQL field.
#
# @return [String]
# The raw SQL.
#
def emit_field(field)
name = emit_keyword(field.name)
if field.parent
name = "#{emit_field(field.parent)}.#{name}"
end
return name
end
#
# Emits a list of elements.
#
# @param [#map] list
# The list of elements.
#
# @return [String]
# The raw SQL.
#
def emit_list(list)
'(' + list.map { |element| emit(element) }.join(',') + ')'
end
#
# Emits a list of columns and assigned values.
#
# @param [Hash{Field,Symbol => Object}] values
# The column names and values.
#
# @return [String]
# The raw SQL.
#
def emit_assignments(values)
values.map { |key,value|
"#{emit_keyword(key)}=#{emit(value)}"
}.join(',')
end
#
# Emits a value used in an expression.
#
# @param [Statement, #to_sql] operand
# The operand to emit.
#
# @return [String]
# The raw SQL.
#
# @since 1.1.0
#
def emit_argument(operand)
case operand
when Statement then "(#{emit_statement(operand)})"
else emit(operand)
end
end
#
# Emits a SQL expression.
#
# @param [BinaryExpr, UnaryExpr] expr
# The SQL expression.
#
# @return [String]
# The raw SQL.
#
def emit_expression(expr)
op = emit_operator(expr.operator)
case expr
when BinaryExpr
left, right = emit_argument(expr.left), emit_argument(expr.right)
case op
when /^\W+$/ then "#{left}#{op}#{right}"
else [left, op, right].join(@space)
end
when UnaryExpr
operand = emit_argument(expr.operand)
case expr.operator
when /^\W+$/ then "#{op}#{operand}"
else [op, operand].join(@space)
end
end
end
#
# Emits a SQL function.
#
# @param [Function] function
# The SQL function.
#
# @return [String]
# The raw SQL.
#
def emit_function(function)
name = emit_keyword(function.name)
arguments = function.arguments.map { |value| emit_argument(value) }
return "#{name}(#{arguments.join(',')})"
end
#
# Emits a SQL object.
#
# @param [#to_sql] object
# The SQL object.
#
# @return [String]
# The raw SQL.
#
# @raise [ArgumentError]
# Could not emit an unknown SQL object.
#
def emit(object)
case object
when NilClass then emit_null
when TrueClass then emit_true
when FalseClass then emit_false
when Integer then emit_integer(object)
when Float then emit_decimal(object)
when String then emit_string(object)
when Literal then emit(object.value)
when Symbol then emit_keyword(object)
when Field then emit_field(object)
when Array then emit_list(object)
when Hash then emit_assignments(object)
when BinaryExpr, UnaryExpr then emit_expression(object)
when Function then emit_function(object)
when Clause then emit_clause(object)
when Statement then emit_statement(object)
when StatementList then emit_statement_list(object)
else
if object.respond_to?(:to_sql)
object.to_sql
else
raise(ArgumentError,"cannot emit #{object.class}")
end
end
end
#
# Emits a SQL Clause.
#
# @param [Clause] clause
# The SQL Clause.
#
# @return [String]
# The raw SQL.
#
def emit_clause(clause)
sql = emit_keyword(clause.keyword)
unless clause.argument.nil?
sql << @space << emit_argument(clause.argument)
end
return sql
end
#
# Emits multiple SQL Clauses.
#
# @param [Array<Clause>] clauses
# The clauses to emit.
#
# @return [String]
# The emitted clauses.
#
def emit_clauses(clauses)
clauses.map { |clause| emit_clause(clause) }.join(@space)
end
#
# Emits a SQL Statement.
#
# @param [Statement] stmt
# The SQL Statement.
#
# @return [String]
# The raw SQL.
#
def emit_statement(stmt)
sql = emit_keyword(stmt.keyword)
unless stmt.argument.nil?
case stmt.argument
when Array
sql << @space << if stmt.argument.length == 1
emit_argument(stmt.argument[0])
else
emit_list(stmt.argument)
end
else
sql << @space << emit_argument(stmt.argument)
end
end
unless stmt.clauses.empty?
sql << @space << emit_clauses(stmt.clauses)
end
return sql
end
#
# Emits a full SQL statement list.
#
# @param [StatementList] list
# The SQL statement list.
#
# @return [String]
# The raw SQL.
#
def emit_statement_list(list)
list.statements.map { |stmt|
emit_statement(stmt)
}.join(";#{@space}")
end
end
end
end