Class: ActiveRecord::Generators::KingsmanGenerator

Inherits:
Base
  • Object
show all
Includes:
Kingsman::Generators::OrmHelpers
Defined in:
lib/generators/active_record/kingsman_generator.rb

Instance Method Summary collapse

Methods included from Kingsman::Generators::OrmHelpers

#model_contents

Instance Method Details

#ar_configObject



99
100
101
102
103
104
105
106
107
108
109
# File 'lib/generators/active_record/kingsman_generator.rb', line 99

def ar_config
  if ActiveRecord::Base.configurations.respond_to?(:configs_for)
    if rails61_and_up?
      ActiveRecord::Base.configurations.configs_for(env_name: Jets.env, name: "primary").configuration_hash
    else
      ActiveRecord::Base.configurations.configs_for(env_name: Jets.env, spec_name: "primary").config
    end
  else
    ActiveRecord::Base.configurations[Jets.env]
  end
end

#copy_kingsman_migrationObject



16
17
18
19
20
21
22
# File 'lib/generators/active_record/kingsman_generator.rb', line 16

def copy_kingsman_migration
  if (behavior == :invoke && model_exists?) || (behavior == :revoke && migration_exists?(table_name))
    migration_template "migration_existing.rb", "#{migration_path}/add_kingsman_to_#{table_name}.rb", migration_version: migration_version
  else
    migration_template "migration.rb", "#{migration_path}/kingsman_create_#{table_name}.rb", migration_version: migration_version
  end
end

#generate_modelObject



24
25
26
# File 'lib/generators/active_record/kingsman_generator.rb', line 24

def generate_model
  invoke "active_record:model", [name], migration: false unless model_exists? && behavior == :invoke
end

#inet?Boolean

Returns:

  • (Boolean)


81
82
83
# File 'lib/generators/active_record/kingsman_generator.rb', line 81

def inet?
  postgresql?
end

#inject_kingsman_contentObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/generators/active_record/kingsman_generator.rb', line 28

def inject_kingsman_content
  content = model_contents

  class_path = if namespaced?
    class_name.to_s.split("::")
  else
    [class_name]
  end

  indent_depth = class_path.size - 1
  content = content.split("\n").map { |line| "  " * indent_depth + line } .join("\n") << "\n"

  inject_into_class(model_path, class_path.last, content) if model_exists?
end

#ip_columnObject



76
77
78
79
# File 'lib/generators/active_record/kingsman_generator.rb', line 76

def ip_column
  # Padded with spaces so it aligns nicely with the rest of the columns.
  "%-8s" % (inet? ? "inet" : "string")
end

#migration_dataObject



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
# File 'lib/generators/active_record/kingsman_generator.rb', line 43

def migration_data
<<RUBY
## Database authenticatable
t.string :email,              null: false, default: ""
t.string :encrypted_password, null: false, default: ""

## Recoverable
t.string   :reset_password_token
t.datetime :reset_password_sent_at

## Rememberable
t.datetime :remember_created_at

## Trackable
# t.integer  :sign_in_count, default: 0, null: false
# t.datetime :current_sign_in_at
# t.datetime :last_sign_in_at
# t.#{ip_column} :current_sign_in_ip
# t.#{ip_column} :last_sign_in_ip

## Confirmable
# t.string   :confirmation_token
# t.datetime :confirmed_at
# t.datetime :confirmation_sent_at
# t.string   :unconfirmed_email # Only if using reconfirmable

## Lockable
# t.integer  :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
# t.string   :unlock_token # Only if unlock strategy is :email or :both
# t.datetime :locked_at
RUBY
end

#migration_versionObject



111
112
113
114
115
# File 'lib/generators/active_record/kingsman_generator.rb', line 111

def migration_version
  if rails5_and_up?
    "[#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}]"
  end
end

#postgresql?Boolean

Returns:

  • (Boolean)


95
96
97
# File 'lib/generators/active_record/kingsman_generator.rb', line 95

def postgresql?
  ar_config && ar_config['adapter'] == 'postgresql'
end

#primary_key_stringObject



121
122
123
124
# File 'lib/generators/active_record/kingsman_generator.rb', line 121

def primary_key_string
  key_string = options[:primary_key_type]
  ", id: :#{key_string}" if key_string
end

#primary_key_typeObject



117
118
119
# File 'lib/generators/active_record/kingsman_generator.rb', line 117

def primary_key_type
  primary_key_string if rails5_and_up?
end

#rails5_and_up?Boolean

Returns:

  • (Boolean)


85
86
87
88
# File 'lib/generators/active_record/kingsman_generator.rb', line 85

def rails5_and_up?
  require "rails/gem_version"
  Rails::VERSION::MAJOR >= 5
end

#rails61_and_up?Boolean

Returns:

  • (Boolean)


90
91
92
93
# File 'lib/generators/active_record/kingsman_generator.rb', line 90

def rails61_and_up?
  require "rails/gem_version"
  Rails::VERSION::MAJOR > 6 || (Rails::VERSION::MAJOR == 6 && Rails::VERSION::MINOR >= 1)
end