Files
ROC/library/model/src/link/cms_local_link.e
Jocelyn Fiat bba1d57ce3 Fixed and improved various issue in admin module (especially the Role editing which was not working as expected.)
Added CMS_MODULE.permissions to allow module to declare the potential permissions.
Added support for CMS_LINK.is_forbidden, in relation with CMS_LOCAL_LINK.permission_arguments.
Split link "username (Logout)" into 2 links "username" and "logout".
Fixed/Changed the way auth modules alter the logout link based on "(Logout)" title, by safer solution based on `location' of the link.

Fixed usage of WSF_REQUEST.path_info by using percent_encoded_path_info which is not non unicode path info to be used most of the time.
Merged CMS_REPONSE.variables and CMS_REPONSE.values .
When possible, prefer usage of CMS_RESPONSE.user instead of CMS_REQUEST_UTIL.current_user (WSF_REQUEST) whenever it is possible.
When possible, prefer usage of CMS_RESPONSE.location, rather than usage of WSF_REQUEST.(percent_encoded_)path_info .
Code cleaning.
2015-08-04 12:48:14 +02:00

200 lines
3.8 KiB
Plaintext

note
description: "[
Abstraction to represent a link to a CMS resource.
]"
date: "$Date: 2015-02-09 22:29:56 +0100 (lun., 09 févr. 2015) $"
revision: "$Revision: 96596 $"
class
CMS_LOCAL_LINK
inherit
CMS_LINK
CMS_LINK_COMPOSITE
rename
items as children,
extend as add_link,
remove as remove_link
undefine
is_equal
end
create
make
feature {NONE} -- Initialization
make (a_title: detachable READABLE_STRING_GENERAL; a_location: like location)
-- Create current local link with optional title `a_title' and location `a_location'.
require
is_valid_local_location_argument: not a_location.starts_with_general ("/")
do
location := a_location
set_title (a_title)
end
feature -- Access
permission_arguments: detachable ITERABLE [READABLE_STRING_8]
-- Permissions required by current link resource.
children: detachable LIST [CMS_LINK]
-- <Precursor>
feature -- Status report
is_active: BOOLEAN
-- <Precursor>
is_expanded: BOOLEAN
-- <Precursor>
do
Result := is_expandable and then internal_is_expanded
end
is_collapsed: BOOLEAN
-- <Precursor>
do
Result := is_expandable and then internal_is_collapsed
end
is_expandable: BOOLEAN
-- <Precursor>
do
Result := internal_is_expandable or internal_is_expanded or has_children
end
has_children: BOOLEAN
-- <Precursor>
do
Result := attached children as l_children and then not l_children.is_empty
end
feature -- Security
is_forbidden: BOOLEAN
-- <Precursor>
-- Related to `permission_arguments' values.
feature -- Element change
set_title (a_title: detachable READABLE_STRING_GENERAL)
-- Set `title' to `a_title' or `location'.
do
if a_title /= Void then
title := a_title.as_string_32
else
title := location.as_string_32
end
end
add_link (lnk: CMS_LINK)
-- <Precursor>
local
lst: like children
do
lst := children
if lst = Void then
create {ARRAYED_LIST [CMS_LINK]} lst.make (1)
children := lst
end
lst.force (lnk)
end
remove_link (lnk: CMS_LINK)
-- <Precursor>
local
lst: like children
do
lst := children
if lst /= Void then
lst.prune_all (lnk)
if lst.is_empty then
children := Void
end
end
end
set_children (lst: like children)
-- Set `children' to `lst'.
do
children := lst
ensure
children_set: children = lst
end
set_permission_arguments (args: like permission_arguments)
-- Set `permission_arguments' to `args'.
do
permission_arguments := args
ensure
permission_arguments_set: permission_arguments = args
end
feature -- Status change
set_is_active (b: BOOLEAN)
-- Set `is_active' to `b'.
do
is_active := b
ensure
is_active: is_active = b
end
set_expanded (b: like is_expanded)
-- Set `is_expanded' to `b'.
do
if b then
set_expandable (True)
set_collapsed (False)
end
internal_is_expanded := b
ensure
is_expanded: is_expanded = b
end
set_collapsed (b: like is_collapsed)
-- Set `is_collapsed' to `b'.
do
if b then
set_expanded (False)
end
internal_is_collapsed := b
ensure
is_collapsed: is_collapsed= b
end
set_expandable (b: like is_expandable)
-- Set `is_expandable' to `b'.
do
internal_is_expandable := b
ensure
is_expandable: is_expandable = b
end
feature -- Security change
set_is_forbidden (b: BOOLEAN)
-- Set `is_forbidden' to `b'.
do
is_forbidden := b
ensure
is_forbidden: is_forbidden = b
end
feature {NONE} -- Implementation
internal_is_expandable: BOOLEAN
internal_is_expanded: BOOLEAN
internal_is_collapsed: BOOLEAN
invariant
note
copyright: "2011-2015, Javier Velilla, Jocelyn Fiat, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
end