Class: Brief::Briefcase

Inherits:
Object
  • Object
show all
Includes:
DSL
Defined in:
lib/brief/briefcase.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from DSL

#action, #define, #view

Constructor Details

#initialize(options = {}) ⇒ Briefcase

Returns a new instance of Briefcase.



8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/brief/briefcase.rb', line 8

def initialize(options = {})
  @options = options.to_mash

  load_configuration
  use(:app, options[:app]) if options[:app]

  load_model_definitions

  if Brief.case.nil?
    Brief.case = self
  end

  Brief.cases[root.basename.to_s] ||= self
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, *args, &block) ⇒ Object



219
220
221
222
223
224
225
226
227
228
# File 'lib/brief/briefcase.rb', line 219

def method_missing(meth, *args, &block)
  if Brief.views.key?(meth.to_sym)
    block = Brief.views[meth.to_sym]
    block.call(self, args.extract_options!)
  elsif repository.respond_to?(meth)
    repository.send(meth, *args, &block)
  else
    super
  end
end

Instance Attribute Details

#model_definitionsObject (readonly)

Returns the value of attribute model_definitions.



5
6
7
# File 'lib/brief/briefcase.rb', line 5

def model_definitions
  @model_definitions
end

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/brief/briefcase.rb', line 5

def options
  @options
end

Instance Method Details

#app_config_pathObject



146
147
148
# File 'lib/brief/briefcase.rb', line 146

def app_config_path
  uses_app? && app_path.join("config.rb")
end

#app_modelsObject



158
159
160
# File 'lib/brief/briefcase.rb', line 158

def app_models
  app_namespace.constants.map {|c| app_namespace.const_get(c) }
end

#app_models_folderObject



150
151
152
# File 'lib/brief/briefcase.rb', line 150

def app_models_folder
  uses_app? && app_path.join("models")
end

#app_namespaceObject



154
155
156
# File 'lib/brief/briefcase.rb', line 154

def app_namespace
  Brief::Apps.find_namespace(options[:app])
end

#app_pathObject



142
143
144
# File 'lib/brief/briefcase.rb', line 142

def app_path
  uses_app? && Brief::Apps.path_for(options[:app]).to_pathname
end

#as_default(params = {}) ⇒ Object



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
# File 'lib/brief/briefcase.rb', line 59

def as_default(params={})
  params.symbolize_keys!

  model_settings = {
    docs_path: docs_path
  }

  model_settings[:rendered] = !!(params.key?(:rendered))
  model_settings[:content] = !!(params.key?(:content))

  all = all_models.compact

  schema = all.map(&:class).uniq.compact
             .map(&:to_schema)
             .reduce({}) {|m, k| m[k[:type_alias]] = k; m }

  models = all.map {|m| m.as_json(model_settings) }

  {
    views: Brief.views.keys,
    key: briefcase.folder_name.to_s.parameterize,
    name: briefcase.folder_name.to_s.titlecase,
    schema: schema,
    models: models,
    settings: settings,
    cache_key: briefcase.cache_key
  }
end

#as_full_exportObject



88
89
90
# File 'lib/brief/briefcase.rb', line 88

def as_full_export
  as_default(content: true, rendered: true)
end

#cache_keyObject



32
33
34
# File 'lib/brief/briefcase.rb', line 32

def cache_key
  "#{slug}:#{repository.cache_key}"
end

#config(&block) ⇒ Object



108
109
110
111
112
# File 'lib/brief/briefcase.rb', line 108

def config(&block)
  Brief::Configuration.instance.tap do |cfg|
    cfg.instance_eval(&block) if block.respond_to?(:call)
  end
end

#dataObject



100
101
102
# File 'lib/brief/briefcase.rb', line 100

def data
  @data ||= data!
end

#data!Object



104
105
106
# File 'lib/brief/briefcase.rb', line 104

def data!
  @data = Brief::Data::Wrapper.new(root: data_path)
end

#data_pathObject



199
200
201
# File 'lib/brief/briefcase.rb', line 199

def data_path
  root.join options.fetch(:data_path) { config.data_path }
end

#docs_pathObject



195
196
197
# File 'lib/brief/briefcase.rb', line 195

def docs_path
  root.join options.fetch(:docs_path) { config.docs_path }
end

#folder_nameObject



118
119
120
# File 'lib/brief/briefcase.rb', line 118

def folder_name
  root.basename
end

#generic_model_class_for(document) ⇒ Object



167
168
169
# File 'lib/brief/briefcase.rb', line 167

def generic_model_class_for(document)
  Brief::Model.for_type(document.document_type) || Brief::Model.for_folder_name(document.parent_folder_name)
end

#load_configurationObject

Loads the configuration for this briefcase, either from the current working directory or the configured path for the configuration file.



124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/brief/briefcase.rb', line 124

def load_configuration
  config_path = options.fetch(:config_path) do
    root.join('brief.rb')
  end

  if config_path.is_a?(String)
    config_path = root.join(config_path)
  end

  if config_path.exist?
    instance_eval(config_path.read) rescue nil
  end
end

#load_model_definitionsObject



171
172
173
174
175
176
177
178
# File 'lib/brief/briefcase.rb', line 171

def load_model_definitions
  if uses_app?
    Brief.load_modules_from(app_path.join("models"))
  end

  Brief.load_modules_from(models_path) if models_path.exist?
  Brief::Model.finalize
end

#model(name_or_type) ⇒ Object

Returns a model name by its human readable description or its type alias



181
182
183
184
185
186
187
188
189
# File 'lib/brief/briefcase.rb', line 181

def model(name_or_type)
  table = Brief::Model.table

  table.fetch(name_or_type) do
    table.values.find do |k|
      k.name == name_or_type
    end
  end
end

#model_class_for(document) ⇒ Object



162
163
164
165
# File 'lib/brief/briefcase.rb', line 162

def model_class_for(document)
  return generic_model_class_for(document) unless uses_app?
  app_models.find {|k| k.type_alias == document.document_type }
end

#models_pathObject



203
204
205
206
207
208
209
210
211
212
213
# File 'lib/brief/briefcase.rb', line 203

def models_path
  value = options.fetch(:models_path) { config.models_path }

  if value.to_s.match(/\./)
    Pathname(Dir.pwd).join(value)
  elsif value.to_s.match(/\//)
    Pathname(value)
  else
    root.join(value)
  end
end

#present(style = "default", params = {}) ⇒ Object



23
24
25
26
27
28
29
30
# File 'lib/brief/briefcase.rb', line 23

def present(style="default", params={})
  if respond_to?("as_#{style}")
    send("as_#{style}", params)
  elsif Brief.views.key?(style.to_sym)
    block = Brief.views[style.to_sym]
    block.call(self, params)
  end
end

#repositoryObject



215
216
217
# File 'lib/brief/briefcase.rb', line 215

def repository
  @repository ||= Brief::Repository.new(self, options)
end

#rootObject



191
192
193
# File 'lib/brief/briefcase.rb', line 191

def root
  Pathname(options.fetch(:root) { Dir.pwd })
end

#server(options = {}) ⇒ Object



114
115
116
# File 'lib/brief/briefcase.rb', line 114

def server(options={})
  @server ||= Brief::Server.new(self, options)
end

#settingsObject



48
49
50
# File 'lib/brief/briefcase.rb', line 48

def settings
  @settings ||= settings!
end

#settings!Object



52
53
54
55
56
57
# File 'lib/brief/briefcase.rb', line 52

def settings!
  if root.join("settings.yml").exist?
    y = YAML.load(root.join("settings.yml").read) rescue nil
    (y || {}).to_mash
  end
end

#slugObject



44
45
46
# File 'lib/brief/briefcase.rb', line 44

def slug
  options.fetch(:slug) { root.basename.to_s.parameterize }
end

#table_of_contentsObject



36
37
38
# File 'lib/brief/briefcase.rb', line 36

def table_of_contents
  table_of_contents_document.to_model
end

#table_of_contents_documentObject



40
41
42
# File 'lib/brief/briefcase.rb', line 40

def table_of_contents_document
  Brief::Document.new(docs_path.join("index.md"), document_type: "outline")
end

#use(module_type = :app, module_id) ⇒ Object



92
93
94
95
96
97
98
# File 'lib/brief/briefcase.rb', line 92

def use(module_type=:app, module_id)
  options[:app] = module_id.to_s

  if app_path && app_path.exist?
    instance_eval(app_config_path.read)
  end
end

#uses_app?Boolean

Returns:

  • (Boolean)


138
139
140
# File 'lib/brief/briefcase.rb', line 138

def uses_app?
  options.key?(:app) && Brief::Apps.available?(options[:app].to_s)
end