Skip to content

Commit

Permalink
Fields are now required in default. Use foo? for nilable fields. (#144
Browse files Browse the repository at this point in the history
)
  • Loading branch information
maiha authored and drujensen committed Feb 15, 2018
1 parent b93f7b6 commit c9cfc3d
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 30 deletions.
16 changes: 8 additions & 8 deletions spec/granite_orm/fields/timestamps_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ require "../../spec_helper"
parent = {{ parent_constant }}.new(name: "parent").tap(&.save)
found_parent = {{ parent_constant }}.find(parent.id).not_nil!

original_timestamp = parent.created_at.not_nil!
read_timestamp = found_parent.created_at.not_nil!
original_timestamp = parent.created_at
read_timestamp = found_parent.created_at

original_timestamp.kind.should eq Time::Kind::Utc
read_timestamp.kind.should eq {{ time_kind_on_read }}
Expand All @@ -29,8 +29,8 @@ require "../../spec_helper"
parent = {{ parent_constant }}.new(name: "parent").tap(&.save)
found_parent = {{ parent_constant }}.find(parent.id).not_nil!

original_timestamp = parent.updated_at.not_nil!
read_timestamp = found_parent.updated_at.not_nil!
original_timestamp = parent.updated_at
read_timestamp = found_parent.updated_at

original_timestamp.kind.should eq Time::Kind::Utc
read_timestamp.kind.should eq {{ time_kind_on_read }}
Expand All @@ -40,8 +40,8 @@ require "../../spec_helper"
parent = {{ parent_constant }}.new(name: "parent").tap(&.save)
found_parent = {{ parent_constant }}.find(parent.id).not_nil!

original_timestamp = parent.created_at.not_nil!
read_timestamp = found_parent.created_at.not_nil!
original_timestamp = parent.created_at
read_timestamp = found_parent.created_at

original_timestamp.epoch.should eq read_timestamp.epoch
end
Expand All @@ -50,8 +50,8 @@ require "../../spec_helper"
parent = {{ parent_constant }}.new(name: "parent").tap(&.save)
found_parent = {{ parent_constant }}.find(parent.id).not_nil!

original_timestamp = parent.updated_at.not_nil!
read_timestamp = found_parent.updated_at.not_nil!
original_timestamp = parent.updated_at
read_timestamp = found_parent.updated_at

original_timestamp.epoch.should eq read_timestamp.epoch
end
Expand Down
2 changes: 1 addition & 1 deletion spec/granite_orm/transactions/save_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ require "../../spec_helper"
parent = {{ parent_constant }}.new
parent.name = ""
parent.save
parent.id.should be_nil
parent.id?.should be_nil
end

it "updates an existing object" do
Expand Down
6 changes: 3 additions & 3 deletions src/granite_orm/associations.cr
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Granite::ORM::Associations

# retrieve the parent relationship
def {{model_name.id}}
if parent = {{model_name.id.camelcase}}.find {{model_name.id}}_id
if parent = {{model_name.id.camelcase}}.find {{model_name.id}}_id?
parent
else
{{model_name.id.camelcase}}.new
Expand All @@ -23,7 +23,7 @@ module Granite::ORM::Associations
{% children_class = children_table.id[0...-1].camelcase %}
{% name_space = @type.name.gsub(/::/, "_").downcase.id %}
{% table_name = SETTINGS[:table_name] || name_space + "s" %}
return [] of {{children_class}} unless id
return [] of {{children_class}} unless id?
foreign_key = "{{children_table.id}}.{{table_name[0...-1]}}_id"
query = "WHERE #{foreign_key} = ?"
{{children_class}}.all(query, id)
Expand All @@ -36,7 +36,7 @@ module Granite::ORM::Associations
{% children_class = children_table.id[0...-1].camelcase %}
{% name_space = @type.name.gsub(/::/, "_").downcase.id %}
{% table_name = SETTINGS[:table_name] || name_space + "s" %}
return [] of {{children_class}} unless id
return [] of {{children_class}} unless id?
query = "JOIN {{through.id}} ON {{through.id}}.{{children_table.id[0...-1]}}_id = {{children_table.id}}.id "
query = query + "WHERE {{through.id}}.{{table_name[0...-1]}}_id = ?"
{{children_class}}.all(query, id)
Expand Down
44 changes: 27 additions & 17 deletions src/granite_orm/fields.cr
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,21 @@ module Granite::ORM::Fields
macro __process_fields
# Create the properties
{% for name, type in FIELDS %}
property {{name.id}} : Union({{type.id}} | Nil)
property? {{name.id}} : Union({{type.id}} | Nil)
def {{name.id}}
raise {{@type.name.stringify}} + "#" + {{name.stringify}} + " cannot be nil" if @{{name.id}}.nil?
@{{name.id}}.not_nil!
end
{% end %}
{% if SETTINGS[:timestamps] %}
property created_at : Time?
property updated_at : Time?
property? created_at : Time?
property? updated_at : Time?
{% for name in %w( created_at updated_at ) %}
def {{name.id}}
raise {{@type.name.stringify}} + "#" + {{name.stringify}} + " cannot be nil" if @{{name.id}}.nil?
@{{name.id}}.not_nil!
end
{% end %}
{% end %}

# keep a hash of the fields to be used for mapping
Expand All @@ -47,46 +57,46 @@ module Granite::ORM::Fields
parsed_params = [] of DB::Any
{% for name, type in FIELDS %}
{% if type.id == Time.id %}
parsed_params << {{name.id}}.try(&.to_s("%F %X"))
parsed_params << {{name.id}}?.try(&.to_s("%F %X"))
{% else %}
parsed_params << {{name.id}}
parsed_params << {{name.id}}?
{% end %}
{% end %}
{% if SETTINGS[:timestamps] %}
parsed_params << created_at.not_nil!.to_s("%F %X")
parsed_params << updated_at.not_nil!.to_s("%F %X")
parsed_params << created_at.to_s("%F %X")
parsed_params << updated_at.to_s("%F %X")
{% end %}
return parsed_params
end

def to_h
fields = {} of String => DB::Any

fields["{{PRIMARY[:name]}}"] = {{PRIMARY[:name]}}
fields["{{PRIMARY[:name]}}"] = {{PRIMARY[:name]}}?

{% for name, type in FIELDS %}
{% if type.id == Time.id %}
fields["{{name}}"] = {{name.id}}.try(&.to_s("%F %X"))
fields["{{name}}"] = {{name.id}}?.try(&.to_s("%F %X"))
{% elsif type.id == Slice.id %}
fields["{{name}}"] = {{name.id}}.try(&.to_s(""))
fields["{{name}}"] = {{name.id}}?.try(&.to_s(""))
{% else %}
fields["{{name}}"] = {{name.id}}
fields["{{name}}"] = {{name.id}}?
{% end %}
{% end %}
{% if SETTINGS[:timestamps] %}
fields["created_at"] = created_at.try(&.to_s("%F %X"))
fields["updated_at"] = updated_at.try(&.to_s("%F %X"))
fields["created_at"] = created_at?.try(&.to_s("%F %X"))
fields["updated_at"] = updated_at?.try(&.to_s("%F %X"))
{% end %}

return fields
end

def to_json(json : JSON::Builder)
json.object do
json.field "{{PRIMARY[:name]}}", {{PRIMARY[:name]}}
json.field "{{PRIMARY[:name]}}", {{PRIMARY[:name]}}?

{% for name, type in FIELDS %}
%field, %value = "{{name.id}}", {{name.id}}
%field, %value = "{{name.id}}", {{name.id}}?
{% if type.id == Time.id %}
json.field %field, %value.try(&.to_s("%F %X"))
{% elsif type.id == Slice.id %}
Expand All @@ -97,8 +107,8 @@ module Granite::ORM::Fields
{% end %}

{% if SETTINGS[:timestamps] %}
json.field "created_at", created_at.try(&.to_s("%F %X"))
json.field "updated_at", updated_at.try(&.to_s("%F %X"))
json.field "created_at", created_at?.try(&.to_s("%F %X"))
json.field "updated_at", updated_at?.try(&.to_s("%F %X"))
{% end %}
end
end
Expand Down
7 changes: 6 additions & 1 deletion src/granite_orm/table.cr
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ module Granite::ORM::Table
@@table_name = "{{table_name}}"
@@primary_name = "{{primary_name}}"

property {{primary_name}} : Union({{primary_type.id}} | Nil)
property? {{primary_name}} : Union({{primary_type.id}} | Nil)

def {{primary_name}}
raise {{@type.name.stringify}} + "#" + {{primary_name.stringify}} + " cannot be nil" if @{{primary_name}}.nil?
@{{primary_name}}.not_nil!
end

def self.table_name
@@table_name
Expand Down

0 comments on commit c9cfc3d

Please sign in to comment.