interro
Interro
Postgres database querying with Crystal
Installation
-
Add the dependency to your
shard.yml
:dependencies: interro: github: jgaskins/interro
-
Run
shards install
Configuration
require "interro"
require "db"
Interro.config do |c|
c.db = DB.open(ENV["DATABASE_URL"])
# or if you're using using replication, you can specify separate DBs to read
# from and write to:
c.read_db = DB.open(ENV["DB_READ_URL"])
c.write_db = DB.open(ENV["DB_WRITE_URL"])
end
Migrations
Migrations are, by convention, in the ./db/migrations
directory.
Generating a migration
When you installed Interro into your application, it created a bin/interro-migration
executable, so we can use that to generate our migration. Let's say we want to generate a migration to create our users
table:
bin/interro-migration g CreateUsers
This creates a directory called db/migrations/YYYY_MM_DD_HH_MM_SS_NANOSECONDS-CreateUsers
. Inside this directory are two files called up.sql
and down.sql
. Respectively, these files represent the SQL queries needed to execute and roll-back the migration. Opening our up.sql
file, we can edit it to say:
CREATE TABLE users(
id UUID PRIMARY KEY NOT NULL DEFAULT gen_random_uuid(),
email TEXT UNIQUE NOT NULL,
name TEXT NOT NULL,
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT now()
)
and in our down.sql
file:
DROP TABLE users
Note: You can only execute one statement per SQL file. Additional statements must be done inside a separate migration.
Executing the migration
Your CreateUsers
migration can be executed with the following command:
bin/interro-migration run CreateUsers
If you want to execute all migrations that have not yet been run (say, if you just pulled someone else's changes that contained a migration), you can simply omit the migration name. The default is to run all migrations.
Rolling back a migration
You can roll back a specific migration by executing the following command:
bin/interro-migration rollback CreateUsers
Models
Once our table is created, we can create a model to represent that data inside the application. To do that, we create a class
or struct
with the desired name (for example, we might choose User
to represent a row in the users
table):
struct User
include DB::Serializable
getter id : UUID
getter name : String
getter email : String
getter created_at : Time
getter updated_at : Time
end
There are 3 things to note here:
- We
include DB::Serializable
. This mixin is provided by thecrystal-lang/crystal-db
shard to deserialize rows into objects. Interro does not require anything else of your models than that. - Since we specified
NOT NULL
on all of the columns in our migration, we can avoid making any of the propertiesnil
-able. If any of your columns do not haveNOT NULL
constraints, you should allow them to benil
here or you will not be able to deserialize those rows. - Our model only specifies properties using
getter
and notproperty
. This makes the models immutable.
Queries
Interro supports 2 different concepts for queries:
Interro::QueryBuilder(T)
for generating SQL queriesInterro::Query
to allow you to write your own SQL queries
QueryBuilder(T)
The simplest way to get started is to write a struct
that inherits from Interro::QueryBuilder
for your model:
struct UserQuery < Interro::QueryBuilder(User)
table "users" # Send queries to the "users" table
end
If you're familiar with ActiveRecord in Ruby, you might be tempted to then run something like UserQuery.where(foo: "bar")
, but Interro's query builder works a little differently. First, it must be instantiated.
users = UserQuery.new
Then, instead of using methods like where
all over your application, you need to add methods to give names to those concepts. For example, if you want to find all the users in a given group:
struct UserQuery < Interro::QueryBuilder(User)
table "users"
def members_of(group : Group)
where(group_id: group.id)
end
end
If you're familiar with ActiveRecord, these are very similar to scopes. Interro requires you to put your queries behind these "scope" methods in order to insulate your application from your database structure. Methods like where
are unavailable outside the class. This way, when your database structure changes, it isolates the code changes to the methods inside these classes.
Here are a few methods provided by Interro::QueryBuilder
:
where(name: "Jamie")
where { |user| user.created_at < timestamp }
inner_join("groups", as: "g", on: "users.group_id = g.id")
order_by(created_at: "DESC")
limit(25)
scalar("count(*)", as: Int64)
insert(name: "Jamie", email: "jamie@example.com") : T
: returns the created recordupdate(role: "admin") : T
: returns the updated models (allowing for immutable models)delete
Each one of these methods returns a new instance of the query builder. This lets you compose them in your query builder's methods and even makes your own methods composable. For example:
struct UserQuery < Interro::QueryBuilder(User)
table "users"
def with_id(id : UUID)
where(id: id).first
end
def registered_before(timestamp : Time)
where { |user| user.created_at < timestamp }
end
def oldest_first
order_by created_at: "DESC"
end
def in_group(group : Group)
where(group_id: group.id)
end
def in_group_with_name(group_name : String)
self # I don't like explicit `self` but it lines up the method chain nicely
.inner_join("groups", as: "g", on: "users.group_id = g.id")
.where("g.name": group_name)
end
def deactivate!(user : User) : User
update active: false
end
def at_most(count : Int32)
limit count
end
def count
scalar("count(*)", as: Int64)
end
end
UserQuery.new
.in_group(group)
.oldest_first
.at_most(25)
This query will get you the 25 oldest users (by registration date) in the specified group. The benefit here is that if we change the relationship between users and groups such that users can be a member of multiple groups, for example, this call doesn't need to change. You only need to change the internals of the query classes that know about that and you can keep the interfaces the exact same.
Transactions
You can operate a transaction using the Interro.transaction(&)
method and passing that transaction to your query objects. For example, to deactivate a group and all its users within the same transaction:
Interro.transaction do |txn|
group = GroupQuery[txn].deactivate! id: group_id
UserQuery[txn]
.in_group(group)
.deactivate_all!
end
If an exception occurs within the transaction block, it will be rolled back, so it may be important not to overwrite any variables from outside the block until the block completes:
group = GroupQuery.new.with_id(group_id)
Interro.transaction do |txn|
group = GroupQuery[txn].deactivate!(id: group_id)
UserQuery[txn]
.in_group(group)
.deactivate_all!
# oops, connection to the database goes out!
end
group # This will be the deactivated one even if the transaction fails
Interro::Query
The other way to create queries with Interro is to create entire query objects. These are structs that represent a single SQL query:
struct GetUserByID < Interro::Query
def call(id : UUID) : User?
read_one? <<-SQL, id, as: User
SELECT *
FROM users
WHERE id = $1
LIMIT 1
SQL
end
end
if user = GetUserByID[user_id]
# ...
end
The use case for these query objects are when a query is more complex than Interro::QueryBuilder
can generate. For example, complex reporting queries, queries that return multiple entities per row, or any arbitrary SQL statement needed.
Methods you can use within Interro::Query
objects:
- Run against the read DB:
read_one(query, *args, as: MyClass)
: asserts that one and only one row matches your query. If there are 0 or >1, an exception is raised.read_one?(query, *args, as: MyClass)
: returns either the first matching row ornil
if no rows match.read_all(query, *args, as: MyClass) : Array(MyClass)
: returns all matching rows as an array
- Run against the write DB:
write_one(query, *args, as: MyClass)
: asserts a single match, assumes aRETURNING
clausewrite(query, *args)
: runs the specified query and ignores any returned data
Transactions
Transactions are performed the same way as with QueryBuilder
, by passing the transaction to the queries with the transaction in brackets:
Interro.transaction do |txn|
user = GetUserByID[txn][user_id]
ChangeUserPassword[txn][new_password]
end
Development
- Install Postgres
- macOS
- https://postgresapp.com/
brew install postgresql
- Linux
apt-get install postgresql
- Snap?
- macOS
- Make sure there is a default user and database (usually either
$USER
orpostgres
for both) - Run specs with
crystal spec
Contributing
- Fork it (https://github.com/jgaskins/interro/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Jamie Gaskins - creator and maintainer
interro
- 21
- 2
- 0
- 5
- 3
- 10 days ago
- October 7, 2020
MIT License
Thu, 21 Nov 2024 13:23:49 GMT