data_conduit 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 72aab70fe54dcf66a97433914a5ded7f8c05887b591f2a211b1dac3798e9f539
4
+ data.tar.gz: 1d5f6bead14baca0f3ecfd0cb33a708887aad75684d57e4eae4ea204c5f29169
5
+ SHA512:
6
+ metadata.gz: 046cbe44b22de14283106fe214b9f42f2b5e5191222f2e1e195a985b824f8410195f81787557c5b6ae68949c24a2806f978d526c7713dd291cc0ab50ccc1334a
7
+ data.tar.gz: 2f461e3aa46d3441b4325fc316e0d197d8db7a7b6ffe22d2162f32d440ef405b059e4efbfdc4ee30d88ba2b6929a36c55727673f3c40eeec6ac8f04f9542f8ba
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright Power Home Remodeling Group, LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,120 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "rest-client"
4
+ require "json"
5
+ require "base64"
6
+ require "sequel"
7
+
8
+ module DataConduit
9
+ module Adapters
10
+ class TrinoRepository
11
+ include DataWarehouseRepository
12
+
13
+ attr_reader :server, :user, :password, :catalog, :schema, :table_name, :conditions, :config
14
+
15
+ def initialize(table_name, conditions = nil, config = {})
16
+ @table_name = table_name
17
+ @conditions = conditions
18
+ @config = default_config.merge(config)
19
+ @server = @config[:server]
20
+ @user = @config[:user]
21
+ @password = @config[:password]
22
+ @catalog = @config[:catalog]
23
+ @schema = @config[:schema]
24
+
25
+ validate_config!
26
+ end
27
+
28
+ def query(sql_query = nil)
29
+ sql_query ||= build_query
30
+ execute(sql_query)
31
+ end
32
+
33
+ def execute(sql_query)
34
+ response_data = process_response(send_query(sql_query))
35
+ transform_response(response_data[:result_data], response_data[:result_columns])
36
+ end
37
+
38
+ private
39
+
40
+ def default_config
41
+ {
42
+ server: ENV.fetch("TRINO_SERVER", "http://localhost:8090"),
43
+ user: ENV.fetch("TRINO_USER", "trino"),
44
+ password: ENV.fetch("TRINO_PASSWORD", nil),
45
+ catalog: ENV.fetch("TRINO_CATALOG", "default"),
46
+ schema: ENV.fetch("TRINO_SCHEMA", "default"),
47
+ }
48
+ end
49
+
50
+ def validate_config!
51
+ %i[server user catalog schema].each do |key|
52
+ value = instance_variable_get(:"@#{key}")
53
+ raise ArgumentError, "#{key} cannot be nil or empty" if value.nil? || value.empty?
54
+ end
55
+ end
56
+
57
+ # Build a SQL query using Sequel as a sanitizer and SQL builder.
58
+ # We use Sequel.mock so that no actual connection is made.
59
+ def build_query
60
+ db = Sequel.mock
61
+ dataset = db.from(Sequel.identifier(table_name)).select_all
62
+
63
+ if conditions
64
+ unless conditions.is_a?(Hash)
65
+ raise ArgumentError, "Conditions must be provided as a Hash for safe query building"
66
+ end
67
+
68
+ dataset = dataset.where(conditions)
69
+ end
70
+
71
+ dataset.sql
72
+ end
73
+
74
+ def process_response(initial_response)
75
+ result_data = []
76
+ result_columns = nil
77
+ response_data = initial_response
78
+
79
+ while response_data
80
+ result_data.concat(response_data["data"]) if response_data["data"]
81
+ result_columns ||= response_data["columns"]
82
+ next_uri = response_data["nextUri"]
83
+ response_data = next_uri ? fetch_next(next_uri) : nil
84
+ end
85
+
86
+ { result_data: result_data, result_columns: result_columns }
87
+ end
88
+
89
+ def send_query(sql)
90
+ JSON.parse(RestClient.post("#{server}/v1/statement", sql, headers).body)
91
+ rescue JSON::ParserError => e
92
+ raise DataConduit::Error, "Failed to parse JSON response: #{e.message}"
93
+ rescue RestClient::ExceptionWithResponse => e
94
+ raise DataConduit::Error, "Query failed: #{e.response&.body}"
95
+ end
96
+
97
+ def fetch_next(uri)
98
+ JSON.parse(RestClient.get(uri, headers).body)
99
+ rescue RestClient::ExceptionWithResponse => e
100
+ raise DataConduit::Error, "Failed to fetch next page: #{e.response&.body}"
101
+ end
102
+
103
+ def headers
104
+ headers = {
105
+ "X-Trino-Catalog" => catalog,
106
+ "X-Trino-Schema" => schema,
107
+ }
108
+
109
+ # Add basic auth if password is provided, otherwise use X-Trino-User header
110
+ if password && !password.empty?
111
+ headers["Authorization"] = "Basic #{Base64.strict_encode64("#{user}:#{password}")}"
112
+ else
113
+ headers["X-Trino-User"] = user
114
+ end
115
+
116
+ headers
117
+ end
118
+ end
119
+ end
120
+ end
@@ -0,0 +1,72 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DataConduit
4
+ module DataWarehouseRepository
5
+ DEFAULT_TRANSFORM_OPTIONS = {
6
+ keys: :string, # :string or :symbol
7
+ transform_keys: nil, # optional proc for key transformation
8
+ transform_values: nil, # optional proc for value transformation
9
+ }.freeze
10
+
11
+ def self.included(base)
12
+ base.include(InstanceMethods)
13
+ end
14
+
15
+ module InstanceMethods
16
+ def initialize(_table_name, _conditions = nil, _config = {})
17
+ validate_table_name(table_name)
18
+ raise NotImplementedError, "You must implement the initialize method"
19
+ end
20
+
21
+ def query(_sql_query = nil)
22
+ raise NotImplementedError, "You must implement the query method"
23
+ end
24
+
25
+ def execute(_sql_query)
26
+ raise NotImplementedError, "You must implement the execute method"
27
+ end
28
+
29
+ protected
30
+
31
+ def validate_table_name(table_name)
32
+ raise ArgumentError, "Table name cannot be blank" if table_name.nil? || table_name.empty?
33
+
34
+ return if table_name.to_s.match?(/^[a-zA-Z0-9_\.]+$/)
35
+
36
+ raise ArgumentError, "Invalid table name format. Table name must contain only letters, " \
37
+ "numbers, underscores, and periods."
38
+ end
39
+
40
+ def transform_response(result_data, result_columns)
41
+ return [] if result_data.nil? || result_data.empty?
42
+
43
+ columns = extract_column_names(result_columns)
44
+ result_data.map do |row|
45
+ transform_row(columns.zip(row).to_h)
46
+ end
47
+ end
48
+
49
+ def transform_row(row)
50
+ row = row.transform_keys { |key| transform_key(key) }
51
+ row = row.transform_values(&transform_options[:transform_values]) if transform_options[:transform_values]
52
+ row
53
+ end
54
+
55
+ def transform_key(key)
56
+ key = transform_options[:transform_keys]&.call(key) || key
57
+ transform_options[:keys] == :symbol ? key.to_sym : key.to_s
58
+ end
59
+
60
+ def transform_options
61
+ @transform_options ||= DEFAULT_TRANSFORM_OPTIONS.merge(
62
+ config.fetch(:transform_options, {})
63
+ )
64
+ end
65
+
66
+ # Can be overridden by adapters if they have different column name structures
67
+ def extract_column_names(columns)
68
+ columns.map { |col| col["name"] }
69
+ end
70
+ end
71
+ end
72
+ end
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DataConduit
4
+ class RepositoryFactory
5
+ class << self
6
+ def repositories
7
+ @repositories ||= {}
8
+ end
9
+
10
+ def register(type, repository_class)
11
+ repositories[type.to_sym] = repository_class
12
+ end
13
+
14
+ def create(table_name:, type: :trino, conditions: nil, config: {})
15
+ repository_class = repository_for(type)
16
+ repository_class.new(table_name, conditions, config)
17
+ end
18
+
19
+ private
20
+
21
+ def repository_for(type)
22
+ type = type.to_sym
23
+ repositories[type] || raise(
24
+ ArgumentError,
25
+ "Unsupported repository type: #{type}. Available types: #{repositories.keys.join(', ')}"
26
+ )
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DataConduit
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "data_conduit/version"
4
+ require_relative "data_conduit/data_warehouse_repository"
5
+ require_relative "data_conduit/repository_factory"
6
+ require_relative "data_conduit/adapters/trino_repository"
7
+
8
+ # Register default adapters
9
+ DataConduit::RepositoryFactory.register(:trino, DataConduit::Adapters::TrinoRepository)
10
+
11
+ module DataConduit
12
+ class Error < StandardError; end
13
+ end
metadata ADDED
@@ -0,0 +1,191 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: data_conduit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Vinicius Dittgen
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-03-19 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rest-client
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '2.1'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '2.1'
26
+ - !ruby/object:Gem::Dependency
27
+ name: securerandom
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: 0.2.2
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: 0.2.2
40
+ - !ruby/object:Gem::Dependency
41
+ name: activesupport
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: 7.1.0
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: 7.1.0
54
+ - !ruby/object:Gem::Dependency
55
+ name: appraisal
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: 2.5.0
61
+ type: :development
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: 2.5.0
68
+ - !ruby/object:Gem::Dependency
69
+ name: license_finder
70
+ requirement: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '7.0'
75
+ type: :development
76
+ prerelease: false
77
+ version_requirements: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '7.0'
82
+ - !ruby/object:Gem::Dependency
83
+ name: rspec
84
+ requirement: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: '3.0'
89
+ type: :development
90
+ prerelease: false
91
+ version_requirements: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: '3.0'
96
+ - !ruby/object:Gem::Dependency
97
+ name: rubocop
98
+ requirement: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: '1.21'
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: '1.21'
110
+ - !ruby/object:Gem::Dependency
111
+ name: rubocop-powerhome
112
+ requirement: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ type: :development
118
+ prerelease: false
119
+ version_requirements: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ - !ruby/object:Gem::Dependency
125
+ name: webmock
126
+ requirement: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: '3.18'
131
+ type: :development
132
+ prerelease: false
133
+ version_requirements: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: '3.18'
138
+ - !ruby/object:Gem::Dependency
139
+ name: sequel
140
+ requirement: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - "~>"
143
+ - !ruby/object:Gem::Version
144
+ version: 5.90.0
145
+ type: :runtime
146
+ prerelease: false
147
+ version_requirements: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: 5.90.0
152
+ description: A flexible data warehouse connector with support for Trino and extensibility
153
+ for other engines
154
+ email:
155
+ - vinipd@gmail.com
156
+ executables: []
157
+ extensions: []
158
+ extra_rdoc_files: []
159
+ files:
160
+ - LICENSE.txt
161
+ - lib/data_conduit.rb
162
+ - lib/data_conduit/adapters/trino_repository.rb
163
+ - lib/data_conduit/data_warehouse_repository.rb
164
+ - lib/data_conduit/repository_factory.rb
165
+ - lib/data_conduit/version.rb
166
+ homepage: https://github.com/powerhome/power-tools
167
+ licenses:
168
+ - MIT
169
+ metadata:
170
+ homepage_uri: https://github.com/powerhome/power-tools
171
+ source_code_uri: https://github.com/powerhome/power-tools/tree/main/packages/data_conduit
172
+ changelog_uri: https://github.com/powerhome/power-tools/blob/main/packages/data_conduit/CHANGELOG.md
173
+ rubygems_mfa_required: 'true'
174
+ rdoc_options: []
175
+ require_paths:
176
+ - lib
177
+ required_ruby_version: !ruby/object:Gem::Requirement
178
+ requirements:
179
+ - - ">="
180
+ - !ruby/object:Gem::Version
181
+ version: '3.0'
182
+ required_rubygems_version: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ">="
185
+ - !ruby/object:Gem::Version
186
+ version: '0'
187
+ requirements: []
188
+ rubygems_version: 3.6.2
189
+ specification_version: 4
190
+ summary: A Ruby connector for data warehouses
191
+ test_files: []