Class: Optimacms::Template

Inherits:
ApplicationRecord show all
Defined in:
app/models/optimacms/template.rb

Constant Summary collapse

EXTENSION_DEFAULT =
'html'
EXTENSIONS =
{'blank'=>'', 'html'=>'html', 'erb'=>'html.erb', 'haml'=>'html.haml'}

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.base_dirObject

settings



57
58
59
# File 'app/models/optimacms/template.rb', line 57

def self.base_dir
  Rails.root.to_s + '/app/views/'
end

.create_folders_tree(dirpath) ⇒ Object

create folders if necessary - NOT WORKING



380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
# File 'app/models/optimacms/template.rb', line 380

def self.create_folders_tree(dirpath)
  a = dirpath.split /\//

  d = ''
  parent_current = nil
  prev_d = d
  a.each do |s|
    d = d + (d=='' ? '' : '/') +s
    r = Template.where(is_folder: true, basepath: d).first
    if r
      parent_current = r
      next
    end
    # create missing folder
    path_new = File.basename(d)
    basedirpath_new = prev_d
    r = Template.create(is_folder: true, basename: path_new, basedirpath: basedirpath_new, title: path_new, parent: parent_current)
    parent_current = r

    prev_d = d
  end

  parent_current

end

.filename_ext(format) ⇒ Object



227
228
229
# File 'app/models/optimacms/template.rb', line 227

def self.filename_ext(format)
  EXTENSIONS[format]
end

.filename_ext_with_dot(format) ⇒ Object



231
232
233
234
235
# File 'app/models/optimacms/template.rb', line 231

def self.filename_ext_with_dot(format)
  ext = filename_ext(format)
  ext = '.'+ext unless ext.blank?
  ext
end

.filename_lang_postfix(lang) ⇒ Object



221
222
223
224
225
# File 'app/models/optimacms/template.rb', line 221

def self.filename_lang_postfix(lang)
  lang = lang.to_s
  return '' if lang==''
  return '.'+lang
end

.where_parent(parent_id) ⇒ Object

search



116
117
118
119
120
121
122
# File 'app/models/optimacms/template.rb', line 116

def self.where_parent(parent_id)
  if parent_id==0
    roots
  elsif parent_id>0
    children_of(parent_id.to_s)
  end
end

Instance Method Details

#_before_createObject



302
303
304
305
306
307
308
309
310
311
312
313
314
315
# File 'app/models/optimacms/template.rb', line 302

def _before_create
  if self.is_folder
    # create dir on disk
    Fileutils::Fileutils.create_dir_if_not_exists self.folder_fullpath
  else
    # add folders if needed
    if self.parent_id.nil? && !self.basedirpath.blank?
      self.parent = Template.create_folders_tree(self.basedirpath)
    end


  end

end

#_before_destroyObject



357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
# File 'app/models/optimacms/template.rb', line 357

def _before_destroy
  if self.is_folder

    # cannot delete not empty dir
    if !self.folder_empty?
      return false
    end

    # delete dir
    folder_delete

  else
    # file


  end


  true
end

#_before_updateObject



317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
# File 'app/models/optimacms/template.rb', line 317

def _before_update
  if self.is_folder
    oldpath = self.folder_fullpath

    self.set_basepath

    # rename dir on disk
    if self.basename_changed?
      raise "cannot change folder path"

      require 'fileutils'
      newpath = self.folder_fullpath

      if Dir.exists?(newpath)
        errors.add(:basename, 'Folder already exists')
        return false
      end

      FileUtils.mv oldpath, newpath

      # TODO: change paths for child templates

    end

  else
    # file

    # TODO: rename file
    #self.make_basepath

    # remove translations if needed
    if !self.is_translated
      self.translations = self.translations.reject{|r| r.lang!=''}
      #self.translations.clear

    end
  end

end

#_before_validationObject

callbacks



288
289
290
291
292
293
294
295
296
297
298
299
# File 'app/models/optimacms/template.rb', line 288

def _before_validation
  fix_basedirpath

  # parent, basedirpath
  if self.parent_id.nil? && !self.basedirpath.blank?
    set_parent_from_basedirpath
  elsif self.basedirpath.nil? && !self.parent_id.nil?
    set_basedirpath_from_parent
  end

  set_basepath
end

#attachObject

operations



128
129
130
131
132
133
134
135
136
# File 'app/models/optimacms/template.rb', line 128

def attach
  # check if file exists
  if !content_file_exists?
    errors.add(:attach, "file not found")
    return false
  end

  save
end

#build_translationsObject

translations



96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'app/models/optimacms/template.rb', line 96

def build_translations
  #
  if is_translated
    langs = Language.list_with_default
  else
    langs = ['']
  end

  #
  langs_missing = langs - self.translations.all.map{|r| r.lang}

  langs_missing.each do |lang|
    self.translations.new(:lang=>lang)
  end

end

#check_parent_folder_existsObject

validations



169
170
171
172
173
# File 'app/models/optimacms/template.rb', line 169

def check_parent_folder_exists
  if self.parent_id.nil? && !self.basedirpath.blank?
    errors.add(:basedirpath, "folder not exists. create it first")
  end
end

#content(lang = '') ⇒ Object

content



195
196
197
198
199
200
# File 'app/models/optimacms/template.rb', line 195

def content(lang='')
  filename =  fullpath(lang)
  return nil if filename.nil?
  return '' if !File.exists? filename
  File.read(filename)
end

#content=(v, lang = '') ⇒ Object



202
203
204
205
206
# File 'app/models/optimacms/template.rb', line 202

def content=(v, lang='')
  File.open(self.fullpath(lang), "w+") do |f|
    f.write(v)
  end
end

#content_file_exists?(lang = '') ⇒ Boolean

Returns:

  • (Boolean)


153
154
155
156
157
158
159
160
161
162
163
164
# File 'app/models/optimacms/template.rb', line 153

def content_file_exists?(lang='')
  postfixes = EXTENSIONS.map{|k,v| '.'+v}

  found = false
  postfixes.each do |p|
    if File.exists?(self.fullpath(lang))
      found = true
      break
    end
  end
  found
end

#filename_baseObject

base filename depending on type for page = name for partial = _name



214
215
216
217
218
# File 'app/models/optimacms/template.rb', line 214

def filename_base
  return '_'+self.basename if self.is_type_partial?

  self.basename
end

#fix_basedirpathObject



252
253
254
255
256
257
# File 'app/models/optimacms/template.rb', line 252

def fix_basedirpath
  self.basedirpath ||= ''
  if !self.basedirpath.blank? && self.basedirpath[-1] !='/'
    self.basedirpath << '/'
  end
end

#folder_deleteObject

folders



409
410
411
412
# File 'app/models/optimacms/template.rb', line 409

def folder_delete
  dirpath = self.folder_fullpath
  FileUtils.remove_dir(dirpath) if Dir.exists? dirpath
end

#folder_empty?Boolean

Returns:

  • (Boolean)


414
415
416
417
418
419
420
421
# File 'app/models/optimacms/template.rb', line 414

def folder_empty?
  dirpath = self.folder_fullpath
  if !Dir.exists? dirpath
    return true
  end

  return Dir.entries(dirpath).size == 2
end

#folder_fullpathObject



185
186
187
188
189
# File 'app/models/optimacms/template.rb', line 185

def folder_fullpath
  f = self.folder_path
  return nil if f.nil?
  Template.base_dir + f
end

#folder_pathObject

folder



180
181
182
183
# File 'app/models/optimacms/template.rb', line 180

def folder_path
  return nil if self.basepath.nil?
  self.basepath+'/'
end

#fullpath(lang = '') ⇒ Object



147
148
149
150
151
# File 'app/models/optimacms/template.rb', line 147

def fullpath(lang='')
  f = self.path(lang)
  return nil if f.nil?
  Template.base_dir + f
end

#has_code?Boolean

Returns:

  • (Boolean)


72
73
74
# File 'app/models/optimacms/template.rb', line 72

def has_code?
  ['haml', 'erb', 'blank'].include?(self.tpl_format)
end

#is_folder?Boolean

Returns:

  • (Boolean)


76
77
78
# File 'app/models/optimacms/template.rb', line 76

def is_folder?
  self.is_folder
end

#is_layout?Boolean

Returns:

  • (Boolean)


80
81
82
# File 'app/models/optimacms/template.rb', line 80

def is_layout?
  return self.type_id==TemplateType::TYPE_LAYOUT
end

#is_type_page?Boolean

Returns:

  • (Boolean)


84
85
86
# File 'app/models/optimacms/template.rb', line 84

def is_type_page?
  return self.type_id==TemplateType::TYPE_PAGE
end

#is_type_partial?Boolean

Returns:

  • (Boolean)


88
89
90
# File 'app/models/optimacms/template.rb', line 88

def is_type_partial?
  return self.type_id==TemplateType::TYPE_PARTIAL
end

#parent_titleObject

properties



67
68
69
# File 'app/models/optimacms/template.rb', line 67

def parent_title
  self.parent.title
end

#path(lang = '') ⇒ Object

path



142
143
144
145
# File 'app/models/optimacms/template.rb', line 142

def path(lang='')
  return nil if self.basename.nil?
  self.basedirpath + filename_base + Template.filename_lang_postfix(lang) + Template.filename_ext_with_dot(self.tpl_format)
end

#set_basedirpath_from_parentObject



259
260
261
262
263
264
265
266
267
268
269
# File 'app/models/optimacms/template.rb', line 259

def set_basedirpath_from_parent
  v = ''
  if self.parent_id.nil?
    v = ''
  else
    v = self.parent.basepath+'/' if self.parent_id >0
  end

  self.basedirpath = v
  #v
end

#set_basepathObject

operations with path



240
241
242
243
244
245
246
247
248
249
# File 'app/models/optimacms/template.rb', line 240

def set_basepath
  if self.parent.nil?
    self.basepath = self.basename
    self.basedirpath ||= ''
  else
    self.basepath = self.parent.basepath+'/'+self.basename
    self.basedirpath ||= self.parent.basepath+'/'
  end

end

#set_parent_from_basedirpathObject



271
272
273
274
275
276
277
278
279
280
281
282
# File 'app/models/optimacms/template.rb', line 271

def set_parent_from_basedirpath
  v = self.basedirpath

  # set parent_id from dir
  d = v.chop
  r = Template.where(is_folder: true, basepath: d).first
  if r
    self.parent_id = r.id
  else
    self.parent_id = nil
  end
end

#to_sObject



50
51
52
# File 'app/models/optimacms/template.rb', line 50

def to_s
  "#{title} (#{basepath})"
end