Module: Alchemy::Page::PageNaming

Extended by:
ActiveSupport::Concern
Includes:
NameConversions
Included in:
Alchemy::Page
Defined in:
app/models/alchemy/page/page_naming.rb

Constant Summary collapse

RESERVED_URLNAMES =
%w(admin messages new)

Instance Method Summary collapse

Methods included from NameConversions

#convert_to_humanized_name, #convert_to_urlname

Instance Method Details

#external_urlnameObject

Returns an urlname prefixed with http://, if no protocol is given



58
59
60
61
# File 'app/models/alchemy/page/page_naming.rb', line 58

def external_urlname
  return urlname if urlname =~ /\A(\/|[a-z]+:\/\/)/
  "http://#{urlname}"
end

#renamed?Boolean

Returns true if name or urlname has changed.

Returns:

  • (Boolean)


38
39
40
# File 'app/models/alchemy/page/page_naming.rb', line 38

def renamed?
  name_changed? || urlname_changed?
end

#slugObject

Returns always the last part of a urlname path



53
54
55
# File 'app/models/alchemy/page/page_naming.rb', line 53

def slug
  urlname.to_s.split('/').last
end

#update_urlname!Object

Makes a slug of all ancestors urlnames including mine and delimit them be slash. So the whole path is stored as urlname in the database.



44
45
46
47
48
49
50
# File 'app/models/alchemy/page/page_naming.rb', line 44

def update_urlname!
  new_urlname = nested_url_name(slug)
  if urlname != new_urlname
    legacy_urls.create(urlname: urlname)
    update_column(:urlname, new_urlname)
  end
end

#visible_ancestorsObject

Returns an array of visible/non-language_root ancestors.



64
65
66
67
68
69
70
71
72
73
# File 'app/models/alchemy/page/page_naming.rb', line 64

def visible_ancestors
  return [] unless parent
  if new_record?
    parent.visible_ancestors.tap do |base|
      base.push(parent) if parent.visible?
    end
  else
    ancestors.visible.contentpages.where(language_root: nil).to_a
  end
end