Merge pull request #1 from jocelyn/roc_template_jfiat

Reversed dependencies between CMS_SETUP and CMS_API(_SERVICE).
This commit is contained in:
jvelilla
2014-11-12 06:44:37 -03:00
37 changed files with 706 additions and 357 deletions

View File

@@ -17,7 +17,6 @@ feature {NONE} -- Initialization
make (a_layout: CMS_LAYOUT) make (a_layout: CMS_LAYOUT)
do do
create error_handler.make
layout := a_layout layout := a_layout
create configuration.make (layout) create configuration.make (layout)
initialize initialize
@@ -27,7 +26,6 @@ feature {NONE} -- Initialization
do do
configure configure
create modules.make (3) create modules.make (3)
build_api_service
build_mailer build_mailer
initialize_modules initialize_modules
end end
@@ -85,49 +83,6 @@ feature -- Access
end end
build_api_service
local
l_database: DATABASE_CONNECTION
l_retry: BOOLEAN
l_message: STRING
do
if not l_retry then
to_implement ("Refactor database setup")
if attached (create {JSON_CONFIGURATION}).new_database_configuration (layout.application_config_path) as l_database_config then
create {DATABASE_CONNECTION_MYSQL} l_database.login_with_connection_string (l_database_config.connection_string)
create api_service.make (create {CMS_STORAGE_MYSQL}.make (l_database))
else
create {DATABASE_CONNECTION_NULL} l_database.make_common
create api_service.make (create {CMS_STORAGE_NULL})
end
else
to_implement ("Workaround code, persistence layer does not implement yet this kind of error handling.")
-- error hanling.
create {DATABASE_CONNECTION_NULL} l_database.make_common
create api_service.make (create {CMS_STORAGE_NULL})
create l_message.make (1024)
if attached ((create {EXCEPTION_MANAGER}).last_exception) as l_exception then
if attached l_exception.description as l_description then
l_message.append (l_description.as_string_32)
l_message.append ("%N%N")
elseif attached l_exception.trace as l_trace then
l_message.append (l_trace)
l_message.append ("%N%N")
else
l_message.append (l_exception.out)
l_message.append ("%N%N")
end
else
l_message.append ("The application crash without available information")
l_message.append ("%N%N")
end
error_handler.add_custom_error (0, " Database Connection ", l_message)
end
rescue
l_retry := True
retry
end
build_auth_engine build_auth_engine
do do
to_implement ("Not implemented authentication") to_implement ("Not implemented authentication")

View File

@@ -14,9 +14,6 @@ feature -- Access
layout: CMS_LAYOUT layout: CMS_LAYOUT
-- CMS layout. -- CMS layout.
api_service: CMS_API_SERVICE
-- cms api service.
is_html: BOOLEAN is_html: BOOLEAN
-- api with progressive enhancements css and js, server side rendering. -- api with progressive enhancements css and js, server side rendering.
deferred deferred
@@ -32,12 +29,6 @@ feature -- Access
deferred deferred
end end
feature -- Status Report
error_handler: ERROR_HANDLER
-- Error handler.
feature -- Access: Site feature -- Access: Site
site_id: READABLE_STRING_8 site_id: READABLE_STRING_8
@@ -54,6 +45,10 @@ feature -- Access: Site
files_location: PATH files_location: PATH
front_page_path: detachable READABLE_STRING_8
-- Optional path defining the front page.
-- By default "" or "/".
feature -- Access: Theme feature -- Access: Theme
themes_location: PATH themes_location: PATH

View File

@@ -13,10 +13,12 @@ inherit
feature -- Hook feature -- Hook
block_list: ITERABLE [like {CMS_BLOCK}.name] block_list: ITERABLE [like {CMS_BLOCK}.name]
-- List of block names, managed by current object.
deferred deferred
end end
get_block_view (a_block_id: detachable READABLE_STRING_8; a_response: CMS_RESPONSE) get_block_view (a_block_id: READABLE_STRING_8; a_response: CMS_RESPONSE)
-- Get block object identified by `a_block_id' and associate with `a_response'.
deferred deferred
end end

View File

@@ -20,9 +20,9 @@ feature {NONE} -- Initialization
do do
to_implement ("Refactor, take the info from a Database or Configuration file.") to_implement ("Refactor, take the info from a Database or Configuration file.")
create items.make (5) create items.make (5)
force (create {CMS_MENU}.make ("primary_nav", 3)) -- primary menu force (create {CMS_MENU}.make ("primary", 3)) -- primary menu
force (create {CMS_MENU}.make_with_title ("management_nav", "Management", 3)) -- secondary in admin view. force (create {CMS_MENU}.make_with_title ("management", "Management", 3)) -- secondary in admin view.
force (create {CMS_MENU}.make_with_title ("secondary_nav", "Navigation", 3)) -- secondary force (create {CMS_MENU}.make_with_title ("secondary", "Navigation", 3)) -- secondary
force (create {CMS_MENU}.make_with_title ("user", "User", 3)) -- first_side_bar force (create {CMS_MENU}.make_with_title ("user", "User", 3)) -- first_side_bar
end end
@@ -41,18 +41,30 @@ feature -- Access
end end
main_menu: CMS_MENU main_menu: CMS_MENU
obsolete
"Use `primary_menu' [Nov/2014]"
do do
Result := item ("primary_nav") Result := primary_menu
end
primary_menu: CMS_MENU
do
Result := item ("primary")
end
secondary_menu: CMS_MENU
do
Result := item ("secondary")
end end
management_menu: CMS_MENU management_menu: CMS_MENU
do do
Result := item ("management_nav") Result := item ("management")
end end
navigation_menu: CMS_MENU navigation_menu: CMS_MENU
do do
Result := item ("secondary_nav") Result := item ("navigation")
end end
user_menu: CMS_MENU user_menu: CMS_MENU

View File

@@ -18,67 +18,56 @@ create
feature {NONE} -- Initialization feature {NONE} -- Initialization
make (a_config: CMS_SETUP) make
do do
name := "basic auth" name := "basic auth"
version := "1.0" version := "1.0"
description := "Service to manage basic authentication" description := "Service to manage basic authentication"
package := "core" package := "core"
config := a_config
end end
config: CMS_SETUP
-- Node configuration.
feature -- Access: router feature -- Access: router
router: WSF_ROUTER router (a_api: CMS_API): WSF_ROUTER
-- Node router. -- Node router.
do do
create Result.make (2) create Result.make (2)
configure_api_login (Result) configure_api_login (a_api, Result)
configure_api_logoff (Result) configure_api_logoff (a_api, Result)
end end
feature -- Access: filter feature -- Access: filter
filters: detachable LIST [WSF_FILTER] filters (a_api: CMS_API): detachable LIST [WSF_FILTER]
-- Possibly list of Filter's module. -- Possibly list of Filter's module.
do do
create {ARRAYED_LIST [WSF_FILTER]} Result.make (2) create {ARRAYED_LIST [WSF_FILTER]} Result.make (2)
Result.extend (create {CORS_FILTER}) Result.extend (create {CORS_FILTER})
Result.extend (create {BASIC_AUTH_FILTER}.make (config)) Result.extend (create {BASIC_AUTH_FILTER}.make (a_api))
end end
feature {NONE} -- Implementation: routes feature {NONE} -- Implementation: routes
configure_api_login (a_router: WSF_ROUTER) configure_api_login (api: CMS_API; a_router: WSF_ROUTER)
local local
l_bal_handler: BASIC_AUTH_LOGIN_HANDLER l_bal_handler: BASIC_AUTH_LOGIN_HANDLER
l_methods: WSF_REQUEST_METHODS l_methods: WSF_REQUEST_METHODS
do do
create l_bal_handler.make (config) create l_bal_handler.make (api)
create l_methods create l_methods
l_methods.enable_get l_methods.enable_get
a_router.handle_with_request_methods ("/basic_auth_login", l_bal_handler, l_methods) a_router.handle_with_request_methods ("/basic_auth_login", l_bal_handler, l_methods)
end end
configure_api_logoff (a_router: WSF_ROUTER) configure_api_logoff (api: CMS_API; a_router: WSF_ROUTER)
local local
l_bal_handler: BASIC_AUTH_LOGOFF_HANDLER l_bal_handler: BASIC_AUTH_LOGOFF_HANDLER
l_methods: WSF_REQUEST_METHODS l_methods: WSF_REQUEST_METHODS
do do
create l_bal_handler.make (config) create l_bal_handler.make (api)
create l_methods create l_methods
l_methods.enable_get l_methods.enable_get
a_router.handle_with_request_methods ("/basic_auth_logoff", l_bal_handler, l_methods) a_router.handle_with_request_methods ("/basic_auth_logoff", l_bal_handler, l_methods)
end end
feature -- Hooks
register_hooks (a_response: CMS_RESPONSE)
do
end
end end

View File

@@ -31,8 +31,8 @@ feature -- Basic operations
-- A valid user -- A valid user
if (attached l_auth.type as l_auth_type and then l_auth_type.is_case_insensitive_equal_general ("basic")) and then if (attached l_auth.type as l_auth_type and then l_auth_type.is_case_insensitive_equal_general ("basic")) and then
attached l_auth.login as l_auth_login and then attached l_auth.password as l_auth_password then attached l_auth.login as l_auth_login and then attached l_auth.password as l_auth_password then
if api_service.is_valid_credential (l_auth_login, l_auth_password) then if api.is_valid_credential (l_auth_login, l_auth_password) then
if attached api_service.user_by_name (l_auth_login) as l_user then if attached api.user_by_name (l_auth_login) as l_user then
req.set_execution_variable ("user", l_user) req.set_execution_variable ("user", l_user)
execute_next (req, res) execute_next (req, res)
else else

View File

@@ -50,7 +50,7 @@ feature -- HTTP Methods
if attached req.query_parameter ("prompt") as l_prompt then if attached req.query_parameter ("prompt") as l_prompt then
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
else else
create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, setup) create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, api)
l_page.set_status_code ({HTTP_STATUS_CODE}.unauthorized) l_page.set_status_code ({HTTP_STATUS_CODE}.unauthorized)
l_page.execute l_page.execute
end end

View File

@@ -20,27 +20,25 @@ feature -- Access
feature -- Router feature -- Router
router: WSF_ROUTER router (a_api: CMS_API): WSF_ROUTER
-- Router configuration. -- Router configuration.
require require
is_enabled: is_enabled is_enabled: is_enabled
deferred deferred
end end
feature -- Hooks configuration feature -- Hooks configuration
register_hooks (a_response: CMS_RESPONSE) register_hooks (a_response: CMS_RESPONSE)
-- Module hooks configuration. -- Module hooks configuration.
require require
is_enabled: is_enabled is_enabled: is_enabled
deferred do
end end
feature -- Filter feature -- Filter
filters: detachable LIST [WSF_FILTER] filters (a_api: CMS_API): detachable LIST [WSF_FILTER]
-- Optional list of filter for Current module. -- Optional list of filter for Current module.
require require
is_enabled: is_enabled is_enabled: is_enabled

View File

@@ -69,8 +69,8 @@ feature -- HTTP Methods
if attached current_user_name (req) then if attached current_user_name (req) then
-- Existing node -- Existing node
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, setup) create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, api)
l_page.add_variable (l_node.content, "node_content") l_page.add_variable (l_node.content, "node_content")
l_page.add_variable (l_id.value, "id") l_page.add_variable (l_id.value, "id")
l_page.execute l_page.execute
@@ -78,7 +78,7 @@ feature -- HTTP Methods
do_error (req, res, l_id) do_error (req, res, l_id)
end end
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
else else
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
@@ -91,19 +91,19 @@ feature -- HTTP Methods
do do
if attached current_user_name (req) then if attached current_user_name (req) then
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
if attached {WSF_STRING} req.form_parameter ("method") as l_method then if attached {WSF_STRING} req.form_parameter ("method") as l_method then
if l_method.is_case_insensitive_equal ("PUT") then if l_method.is_case_insensitive_equal ("PUT") then
do_put (req, res) do_put (req, res)
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
end end
else else
do_error (req, res, l_id) do_error (req, res, l_id)
end end
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
else else
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
@@ -118,16 +118,16 @@ feature -- HTTP Methods
to_implement ("Check if user has permissions") to_implement ("Check if user has permissions")
if attached current_user (req) as l_user then if attached current_user (req) as l_user then
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
u_node := extract_data_form (req) u_node := extract_data_form (req)
u_node.set_id (l_id.integer_value) u_node.set_id (l_id.integer_value)
api_service.update_node_content (l_user.id, u_node.id, u_node.content) api.update_node_content (l_user.id, u_node.id, u_node.content)
(create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url ("")) (create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url (""))
else else
do_error (req, res, l_id) do_error (req, res, l_id)
end end
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
else else
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
@@ -140,7 +140,7 @@ feature -- Error
local local
l_page: CMS_RESPONSE l_page: CMS_RESPONSE
do do
create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, setup) create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, api)
l_page.add_variable (req.absolute_script_url (req.path_info), "request") l_page.add_variable (req.absolute_script_url (req.path_info), "request")
if a_id.is_integer then if a_id.is_integer then
-- resource not found -- resource not found

View File

@@ -68,8 +68,8 @@ feature -- HTTP Methods
do do
-- Existing node -- Existing node
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, setup) create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, api)
l_page.add_variable (l_node, "node") l_page.add_variable (l_node, "node")
l_page.execute l_page.execute
else else
@@ -89,14 +89,14 @@ feature -- HTTP Methods
to_implement ("Check user permissions!!!") to_implement ("Check user permissions!!!")
if attached current_user (req) as l_user then if attached current_user (req) as l_user then
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
if attached {WSF_STRING} req.form_parameter ("method") as l_method then if attached {WSF_STRING} req.form_parameter ("method") as l_method then
if l_method.is_case_insensitive_equal ("DELETE") then if l_method.is_case_insensitive_equal ("DELETE") then
do_delete (req, res) do_delete (req, res)
elseif l_method.is_case_insensitive_equal ("PUT") then elseif l_method.is_case_insensitive_equal ("PUT") then
do_put (req, res) do_put (req, res)
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
end end
else else
@@ -106,7 +106,7 @@ feature -- HTTP Methods
-- New node -- New node
u_node := extract_data_form (req) u_node := extract_data_form (req)
u_node.set_author (l_user) u_node.set_author (l_user)
api_service.new_node (u_node) api.new_node (u_node)
(create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url ("")) (create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url (""))
end end
else else
@@ -122,16 +122,16 @@ feature -- HTTP Methods
if attached current_user (req) as l_user then if attached current_user (req) as l_user then
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
u_node := extract_data_form (req) u_node := extract_data_form (req)
u_node.set_id (l_id.integer_value) u_node.set_id (l_id.integer_value)
api_service.update_node (l_user.id,u_node) api.update_node (l_user.id,u_node)
(create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url ("")) (create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url (""))
else else
do_error (req, res, l_id) do_error (req, res, l_id)
end end
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
else else
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
@@ -144,14 +144,14 @@ feature -- HTTP Methods
do do
if attached current_user_name (req) then if attached current_user_name (req) then
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
api_service.delete_node (l_id.integer_value) api.delete_node (l_id.integer_value)
(create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url ("")) (create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url (""))
else else
do_error (req, res, l_id) do_error (req, res, l_id)
end end
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
else else
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
@@ -165,7 +165,7 @@ feature -- Error
local local
l_page: CMS_RESPONSE l_page: CMS_RESPONSE
do do
create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, setup) create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, api)
l_page.add_variable (req.absolute_script_url (req.path_info), "request") l_page.add_variable (req.absolute_script_url (req.path_info), "request")
if a_id.is_integer then if a_id.is_integer then
-- resource not found -- resource not found
@@ -186,7 +186,7 @@ feature {NONE} -- Node
l_page: CMS_RESPONSE l_page: CMS_RESPONSE
do do
if attached current_user_name (req) then if attached current_user_name (req) then
create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, setup) create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, api)
l_page.add_variable (setup.is_html, "html") l_page.add_variable (setup.is_html, "html")
l_page.add_variable (setup.is_web, "web") l_page.add_variable (setup.is_web, "web")
l_page.execute l_page.execute

View File

@@ -68,8 +68,8 @@ feature -- HTTP Methods
if attached current_user_name (req) then if attached current_user_name (req) then
-- Existing node -- Existing node
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, setup) create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, api)
l_page.add_variable (l_id.value, "id") l_page.add_variable (l_id.value, "id")
l_page.add_variable (l_node.summary, "node_summary") l_page.add_variable (l_node.summary, "node_summary")
l_page.execute l_page.execute
@@ -77,7 +77,7 @@ feature -- HTTP Methods
do_error (req, res, l_id) do_error (req, res, l_id)
end end
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
else else
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
@@ -90,19 +90,19 @@ feature -- HTTP Methods
do do
if attached current_user_name (req) then if attached current_user_name (req) then
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
if attached {WSF_STRING} req.form_parameter ("method") as l_method then if attached {WSF_STRING} req.form_parameter ("method") as l_method then
if l_method.is_case_insensitive_equal ("PUT") then if l_method.is_case_insensitive_equal ("PUT") then
do_put (req, res) do_put (req, res)
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
end end
else else
do_error (req, res, l_id) do_error (req, res, l_id)
end end
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
else else
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
@@ -116,16 +116,16 @@ feature -- HTTP Methods
do do
if attached current_user (req) as l_user then if attached current_user (req) as l_user then
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
u_node := extract_data_form (req) u_node := extract_data_form (req)
u_node.set_id (l_id.integer_value) u_node.set_id (l_id.integer_value)
api_service.update_node_summary (l_user.id,u_node.id, u_node.summary) api.update_node_summary (l_user.id,u_node.id, u_node.summary)
(create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url ("")) (create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url (""))
else else
do_error (req, res, l_id) do_error (req, res, l_id)
end end
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
else else
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
@@ -140,7 +140,7 @@ feature -- Error
local local
l_page: CMS_RESPONSE l_page: CMS_RESPONSE
do do
create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, setup) create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, api)
l_page.add_variable (req.absolute_script_url (req.path_info), "request") l_page.add_variable (req.absolute_script_url (req.path_info), "request")
if a_id.is_integer then if a_id.is_integer then
-- resource not found -- resource not found

View File

@@ -68,8 +68,8 @@ feature -- HTTP Methods
if attached current_user_name (req) as l_user then if attached current_user_name (req) as l_user then
-- Existing node -- Existing node
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, setup) create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, api)
l_page.add_variable (l_node.title, "node_title") l_page.add_variable (l_node.title, "node_title")
l_page.add_variable (l_id.value, "id") l_page.add_variable (l_id.value, "id")
l_page.execute l_page.execute
@@ -77,7 +77,7 @@ feature -- HTTP Methods
do_error (req, res, l_id) do_error (req, res, l_id)
end end
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
else else
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
@@ -89,19 +89,19 @@ feature -- HTTP Methods
do do
if attached current_user_name (req) as l_user then if attached current_user_name (req) as l_user then
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
if attached {WSF_STRING} req.form_parameter ("method") as l_method then if attached {WSF_STRING} req.form_parameter ("method") as l_method then
if l_method.is_case_insensitive_equal ("PUT") then if l_method.is_case_insensitive_equal ("PUT") then
do_put (req, res) do_put (req, res)
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
end end
else else
do_error (req, res, l_id) do_error (req, res, l_id)
end end
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
else else
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
@@ -116,16 +116,16 @@ feature -- HTTP Methods
to_implement ("Check if user has permissions") to_implement ("Check if user has permissions")
if attached current_user (req) as l_user then if attached current_user (req) as l_user then
if attached {WSF_STRING} req.path_parameter ("id") as l_id then if attached {WSF_STRING} req.path_parameter ("id") as l_id then
if l_id.is_integer and then attached {CMS_NODE} api_service.node (l_id.integer_value) as l_node then if l_id.is_integer and then attached {CMS_NODE} api.node (l_id.integer_value) as l_node then
u_node := extract_data_form (req) u_node := extract_data_form (req)
u_node.set_id (l_id.integer_value) u_node.set_id (l_id.integer_value)
api_service.update_node_title (l_user.id,u_node.id, u_node.title) api.update_node_title (l_user.id,u_node.id, u_node.title)
(create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url ("")) (create {CMS_GENERIC_RESPONSE}).new_response_redirect (req, res, req.absolute_script_url (""))
else else
do_error (req, res, l_id) do_error (req, res, l_id)
end end
else else
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
end end
else else
(create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res) (create {CMS_GENERIC_RESPONSE}).new_response_unauthorized (req, res)
@@ -139,7 +139,7 @@ feature -- Error
local local
l_page: CMS_RESPONSE l_page: CMS_RESPONSE
do do
create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, setup) create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, api)
l_page.add_variable (req.absolute_script_url (req.path_info), "request") l_page.add_variable (req.absolute_script_url (req.path_info), "request")
if a_id.is_integer then if a_id.is_integer then
-- resource not found -- resource not found

View File

@@ -52,8 +52,8 @@ feature -- HTTP Methods
-- At the moment the template is hardcoded, but we can -- At the moment the template is hardcoded, but we can
-- get them from the configuration file and load them into -- get them from the configuration file and load them into
-- the setup class. -- the setup class.
create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, setup) create {GENERIC_VIEW_CMS_RESPONSE} l_page.make (req, res, api)
l_page.add_variable (api_service.nodes, "nodes") l_page.add_variable (api.nodes, "nodes")
l_page.execute l_page.execute
end end
end end

View File

@@ -9,6 +9,9 @@ class
inherit inherit
CMS_MODULE CMS_MODULE
redefine
register_hooks
end
CMS_HOOK_MENU_ALTER CMS_HOOK_MENU_ALTER
@@ -20,72 +23,74 @@ create
feature {NONE} -- Initialization feature {NONE} -- Initialization
make (a_config: CMS_SETUP) make (a_setup: CMS_SETUP)
-- Create Current module, disabled by default. -- Create Current module, disabled by default.
do do
name := "node" name := "node"
version := "1.0" version := "1.0"
description := "Service to manage content based on 'node'" description := "Service to manage content based on 'node'"
package := "core" package := "core"
config := a_config config := a_setup
end end
config: CMS_SETUP config: CMS_SETUP
-- Node configuration. -- Node configuration.
feature -- Access: router feature -- Access: router
router: WSF_ROUTER router (a_api: CMS_API): WSF_ROUTER
-- Node router. -- Node router.
do do
create Result.make (5) create Result.make (5)
configure_api_node (Result) configure_api_node (a_api, Result)
configure_api_nodes (Result) configure_api_nodes (a_api, Result)
configure_api_node_title (Result) configure_api_node_title (a_api, Result)
configure_api_node_summary (Result) configure_api_node_summary (a_api, Result)
configure_api_node_content (Result) configure_api_node_content (a_api, Result)
end end
feature {NONE} -- Implementation: routes feature {NONE} -- Implementation: routes
configure_api_node (a_router: WSF_ROUTER) configure_api_node (api: CMS_API; a_router: WSF_ROUTER)
local local
l_node_handler: NODE_HANDLER l_node_handler: NODE_HANDLER
l_methods: WSF_REQUEST_METHODS l_methods: WSF_REQUEST_METHODS
do do
create l_node_handler.make (config) create l_node_handler.make (api)
create l_methods create l_methods
l_methods.enable_get l_methods.enable_get
l_methods.enable_post l_methods.enable_post
l_methods.enable_put l_methods.enable_put
a_router.handle_with_request_methods ("/node", l_node_handler, l_methods) a_router.handle_with_request_methods ("/node", l_node_handler, l_methods)
create l_node_handler.make (config) create l_node_handler.make (api)
create l_methods create l_methods
l_methods.enable_get l_methods.enable_get
l_methods.enable_post l_methods.enable_post
l_methods.enable_put l_methods.enable_put
l_methods.enable_delete l_methods.enable_delete
a_router.handle_with_request_methods ("/node/{id}", l_node_handler, l_methods) a_router.handle_with_request_methods ("/node/{id}", l_node_handler, l_methods)
a_router.handle_with_request_methods ("/nodes/", create {WSF_URI_AGENT_HANDLER}.make (agent do_get_nodes (?,?, api)), a_router.methods_get)
end end
configure_api_nodes (a_router: WSF_ROUTER) configure_api_nodes (api: CMS_API; a_router: WSF_ROUTER)
local local
l_nodes_handler: NODES_HANDLER l_nodes_handler: NODES_HANDLER
l_methods: WSF_REQUEST_METHODS l_methods: WSF_REQUEST_METHODS
do do
create l_nodes_handler.make (config) create l_nodes_handler.make (api)
create l_methods create l_methods
l_methods.enable_get l_methods.enable_get
a_router.handle_with_request_methods ("/nodes", l_nodes_handler, l_methods) a_router.handle_with_request_methods ("/nodes", l_nodes_handler, l_methods)
end end
configure_api_node_summary (a_router: WSF_ROUTER) configure_api_node_summary (api: CMS_API; a_router: WSF_ROUTER)
local local
l_report_handler: NODE_SUMMARY_HANDLER l_report_handler: NODE_SUMMARY_HANDLER
l_methods: WSF_REQUEST_METHODS l_methods: WSF_REQUEST_METHODS
do do
create l_report_handler.make (config) create l_report_handler.make (api)
create l_methods create l_methods
l_methods.enable_get l_methods.enable_get
l_methods.enable_post l_methods.enable_post
@@ -93,13 +98,12 @@ feature {NONE} -- Implementation: routes
a_router.handle_with_request_methods ("/node/{id}/summary", l_report_handler, l_methods) a_router.handle_with_request_methods ("/node/{id}/summary", l_report_handler, l_methods)
end end
configure_api_node_title (api: CMS_API; a_router: WSF_ROUTER)
configure_api_node_title (a_router: WSF_ROUTER)
local local
l_report_handler: NODE_TITLE_HANDLER l_report_handler: NODE_TITLE_HANDLER
l_methods: WSF_REQUEST_METHODS l_methods: WSF_REQUEST_METHODS
do do
create l_report_handler.make (config) create l_report_handler.make (api)
create l_methods create l_methods
l_methods.enable_get l_methods.enable_get
l_methods.enable_post l_methods.enable_post
@@ -107,12 +111,12 @@ feature {NONE} -- Implementation: routes
a_router.handle_with_request_methods ("/node/{id}/title", l_report_handler, l_methods) a_router.handle_with_request_methods ("/node/{id}/title", l_report_handler, l_methods)
end end
configure_api_node_content (a_router: WSF_ROUTER) configure_api_node_content (api: CMS_API; a_router: WSF_ROUTER)
local local
l_report_handler: NODE_CONTENT_HANDLER l_report_handler: NODE_CONTENT_HANDLER
l_methods: WSF_REQUEST_METHODS l_methods: WSF_REQUEST_METHODS
do do
create l_report_handler.make (config) create l_report_handler.make (api)
create l_methods create l_methods
l_methods.enable_get l_methods.enable_get
l_methods.enable_post l_methods.enable_post
@@ -120,7 +124,6 @@ feature {NONE} -- Implementation: routes
a_router.handle_with_request_methods ("/node/{id}/content", l_report_handler, l_methods) a_router.handle_with_request_methods ("/node/{id}/content", l_report_handler, l_methods)
end end
feature -- Hooks feature -- Hooks
register_hooks (a_response: CMS_RESPONSE) register_hooks (a_response: CMS_RESPONSE)
@@ -134,26 +137,33 @@ feature -- Hooks
Result := <<"node-info">> Result := <<"node-info">>
end end
get_block_view (a_block_id: detachable READABLE_STRING_8; a_response: CMS_RESPONSE) get_block_view (a_block_id: READABLE_STRING_8; a_response: CMS_RESPONSE)
-- local local
-- b: CMS_CONTENT_BLOCK -- b: CMS_CONTENT_BLOCK
do do
-- if -- create b.make (a_block_id, "Block::node", "This is a block test", Void)
-- a_execution.is_front and then -- a_response.add_block (b, "sidebar_second")
-- attached a_execution.user as u
-- then
-- create b.make ("node-info", "Node", "Node ...", a_execution.formats.plain_text)
-- a_execution.add_block (b, Void)
-- end
end end
menu_alter (a_menu_system: CMS_MENU_SYSTEM; a_response: CMS_RESPONSE) menu_alter (a_menu_system: CMS_MENU_SYSTEM; a_response: CMS_RESPONSE)
local local
lnk: CMS_LOCAL_LINK lnk: CMS_LOCAL_LINK
perms: detachable ARRAYED_LIST [READABLE_STRING_8] -- perms: detachable ARRAYED_LIST [READABLE_STRING_8]
do do
create lnk.make ("List of nodes", "/nodes") create lnk.make ("List of nodes", a_response.url ("/nodes", Void))
a_menu_system.main_menu.extend (lnk) a_menu_system.primary_menu.extend (lnk)
end
feature -- Handler
do_get_nodes (req: WSF_REQUEST; res: WSF_RESPONSE; a_api: CMS_API)
local
r: CMS_RESPONSE
do
create {NOT_IMPLEMENTED_ERROR_CMS_RESPONSE} r.make (req, res, a_api)
r.set_main_content ("Sorry: listing the CMS nodes is not yet implemented.")
r.add_block (create {CMS_CONTENT_BLOCK}.make ("nodes_warning", Void, "/nodes/ is not yet implemented", Void), "highlighted")
r.execute
end end
end end

View File

@@ -1,33 +1,86 @@
note note
description: "Summary description for {CMS_API_SERVICE}." description: "Summary description for {CMS_API}."
date: "$Date$" date: "$Date$"
revision: "$Revision$" revision: "$Revision$"
class class
CMS_API_SERVICE CMS_API
inherit inherit
SHARED_ERROR SHARED_ERROR
REFACTORING_HELPER
REFACTORING_HELPER
create create
make make
feature -- Initialize feature -- Initialize
make (a_storage: CMS_STORAGE) make (a_setup: CMS_SETUP)
-- Create the API service with an storege `a_storage'. -- Create the API service with an storege `a_storage'.
do do
storage := a_storage setup := a_setup
create error_handler.make
initialize
set_successful set_successful
ensure ensure
storage_set: storage = a_storage -- storage_set: storage = a_storage
end
setup: CMS_SETUP
-- CMS setup.
initialize
local
l_database: DATABASE_CONNECTION
retried: BOOLEAN
l_message: STRING
do
if not retried then
to_implement ("Refactor database setup")
if attached (create {JSON_CONFIGURATION}).new_database_configuration (setup.layout.application_config_path) as l_database_config then
create {DATABASE_CONNECTION_MYSQL} l_database.login_with_connection_string (l_database_config.connection_string)
create {CMS_STORAGE_MYSQL} storage.make (l_database)
else
create {DATABASE_CONNECTION_NULL} l_database.make_common
create {CMS_STORAGE_NULL} storage
end
else
to_implement ("Workaround code, persistence layer does not implement yet this kind of error handling.")
-- error hanling.
create {DATABASE_CONNECTION_NULL} l_database.make_common
create {CMS_STORAGE_NULL} storage
create l_message.make (1024)
if attached ((create {EXCEPTION_MANAGER}).last_exception) as l_exception then
if attached l_exception.description as l_description then
l_message.append (l_description.as_string_32)
l_message.append ("%N%N")
elseif attached l_exception.trace as l_trace then
l_message.append (l_trace)
l_message.append ("%N%N")
else
l_message.append (l_exception.out)
l_message.append ("%N%N")
end
else
l_message.append ("The application crash without available information")
l_message.append ("%N%N")
end
error_handler.add_custom_error (0, " Database Connection ", l_message)
end
rescue
retried := True
retry
end end
feature -- Access feature -- Access
error_handler: ERROR_HANDLER
-- Error handler.
feature -- Status Report
is_valid_credential (l_auth_login, l_auth_password: READABLE_STRING_32): BOOLEAN is_valid_credential (l_auth_login, l_auth_password: READABLE_STRING_32): BOOLEAN
do do
Result := storage.is_valid_credential (l_auth_login, l_auth_password) Result := storage.is_valid_credential (l_auth_login, l_auth_password)

View File

@@ -0,0 +1,17 @@
note
description: "Summary description for {CMS_API_OPTIONS}."
author: ""
date: "$Date$"
revision: "$Revision$"
class
CMS_API_OPTIONS
inherit
WSF_API_OPTIONS
create
make,
make_from_manifest
end

View File

@@ -9,6 +9,8 @@ deferred class
inherit inherit
CMS_ENCODERS
REFACTORING_HELPER REFACTORING_HELPER
feature -- User feature -- User
@@ -21,8 +23,6 @@ feature -- User
if attached {CMS_USER} current_user (req) as l_user then if attached {CMS_USER} current_user (req) as l_user then
Result := l_user.name Result := l_user.name
end end
end end
current_user (req: WSF_REQUEST): detachable CMS_USER current_user (req: WSF_REQUEST): detachable CMS_USER

View File

@@ -41,11 +41,11 @@ create
feature {NONE} -- Initialization feature {NONE} -- Initialization
make (a_setup: CMS_SETUP) make (a_api: CMS_API)
-- Build a CMS service with `a_setup' configuration. -- Build a CMS service with `a_setup' configuration.
do do
setup := a_setup api := a_api
configuration := a_setup.configuration configuration := a_api.setup.configuration
initialize initialize
end end
@@ -103,36 +103,41 @@ feature -- Settings: router
-- <Precursor> -- <Precursor>
local local
l_module: CMS_MODULE l_module: CMS_MODULE
l_api: like api
l_router: like router
do do
log.write_debug (generator + ".setup_router") log.write_debug (generator + ".setup_router")
-- Configure root of api handler. -- Configure root of api handler.
configure_api_root
l_router := router
configure_api_root (l_router)
-- Include routes from modules. -- Include routes from modules.
l_api := api
across across
modules as ic modules as ic
loop loop
l_module := ic.item l_module := ic.item
router.import (l_module.router) l_router.import (l_module.router (l_api))
end end
-- Configure files handler. -- Configure files handler.
configure_api_file_handler configure_api_file_handler (l_router)
end end
configure_api_root configure_api_root (a_router: WSF_ROUTER)
local local
l_root_handler: CMS_ROOT_HANDLER l_root_handler: CMS_ROOT_HANDLER
l_methods: WSF_REQUEST_METHODS l_methods: WSF_REQUEST_METHODS
do do
log.write_debug (generator + ".configure_api_root") log.write_debug (generator + ".configure_api_root")
create l_root_handler.make (setup) create l_root_handler.make (api)
create l_methods create l_methods
l_methods.enable_get l_methods.enable_get
router.handle_with_request_methods ("/", l_root_handler, l_methods) a_router.handle_with_request_methods ("/", l_root_handler, l_methods)
router.handle_with_request_methods ("", l_root_handler, l_methods) a_router.handle_with_request_methods ("", l_root_handler, l_methods)
end end
configure_api_file_handler configure_api_file_handler (a_router: WSF_ROUTER)
local local
fhdl: WSF_FILE_SYSTEM_HANDLER fhdl: WSF_FILE_SYSTEM_HANDLER
do do
@@ -143,7 +148,7 @@ feature -- Settings: router
do do
execute_default (ia_req, ia_res) execute_default (ia_req, ia_res)
end) end)
router.handle_with_request_methods ("/", fhdl, router.methods_GET) a_router.handle_with_request_methods ("/", fhdl, router.methods_GET)
end end
feature -- Execute Filter feature -- Execute Filter
@@ -162,6 +167,7 @@ feature -- Filters
local local
f, l_filter: detachable WSF_FILTER f, l_filter: detachable WSF_FILTER
l_module: CMS_MODULE l_module: CMS_MODULE
l_api: like api
do do
log.write_debug (generator + ".create_filter") log.write_debug (generator + ".create_filter")
l_filter := Void l_filter := Void
@@ -172,18 +178,19 @@ feature -- Filters
l_filter := f l_filter := f
-- Error Filter -- Error Filter
create {CMS_ERROR_FILTER} f.make (setup) create {CMS_ERROR_FILTER} f.make (api)
f.set_next (l_filter) f.set_next (l_filter)
l_filter := f l_filter := f
-- Include filters from modules -- Include filters from modules
l_api := api
across across
modules as ic modules as ic
loop loop
l_module := ic.item l_module := ic.item
if if
l_module.is_enabled and then l_module.is_enabled and then
attached l_module.filters as l_m_filters attached l_module.filters (l_api) as l_m_filters
then then
across l_m_filters as f_ic loop across l_m_filters as f_ic loop
f := f_ic.item f := f_ic.item
@@ -213,11 +220,16 @@ feature -- Filters
f.set_next (Current) f.set_next (Current)
end end
feature -- Access feature -- Access
api: CMS_API
-- API service.
setup: CMS_SETUP setup: CMS_SETUP
-- CMS setup. -- CMS setup.
do
Result := api.setup
end
configuration: CMS_CONFIGURATION configuration: CMS_CONFIGURATION
-- CMS configuration. -- CMS configuration.

View File

@@ -0,0 +1,129 @@
note
description: "Summary description for {CMS_URL_UTILITIES}."
author: ""
date: "$Date$"
revision: "$Revision$"
deferred class
CMS_URL_UTILITIES
inherit
CMS_REQUEST_UTIL
feature -- Core
site_url: READABLE_STRING_8
deferred
end
base_url: detachable READABLE_STRING_8
-- Base url if any.
deferred
end
based_path (p: STRING): STRING
-- Path `p' in the context of the `base_url'
do
if attached base_url as l_base_url then
create Result.make_from_string (l_base_url)
if p.is_empty then
else
if p[1] = '/' then
Result.append (p.substring (2, p.count))
else
Result.append (p)
end
end
else
Result := p
end
end
feature -- Url
absolute_url (a_path: STRING; opts: detachable CMS_API_OPTIONS): STRING
local
l_opts: detachable CMS_API_OPTIONS
do
l_opts := opts
if l_opts = Void then
create l_opts.make (1)
end
l_opts.force (True, "absolute")
Result := url (a_path, l_opts)
end
url (a_path: READABLE_STRING_8; opts: detachable CMS_API_OPTIONS): STRING
-- URL for path `a_path' and optional parameters from `opts'.
--| Options `opts' could be
--| - absolute: True|False => return absolute url
--| - query: string => append "?query"
--| - fragment: string => append "#fragment"
local
q,f: detachable STRING_8
l_abs: BOOLEAN
do
l_abs := False
if opts /= Void then
l_abs := opts.boolean_item ("absolute", l_abs)
if attached opts.item ("query") as l_query then
if attached {READABLE_STRING_8} l_query as s_value then
q := s_value
elseif attached {ITERABLE [TUPLE [key, value: READABLE_STRING_GENERAL]]} l_query as lst then
create q.make_empty
across
lst as c
loop
if q.is_empty then
else
q.append_character ('&')
end
q.append (url_encoded (c.item.key))
q.append_character ('=')
q.append (url_encoded (c.item.value))
end
end
end
if attached opts.string_item ("fragment") as s_frag then
f := s_frag
end
end
if l_abs then
if a_path.substring_index ("://", 1) = 0 then
create Result.make_from_string (site_url)
if a_path.is_empty then
elseif Result.ends_with ("/") then
if a_path[1] = '/' then
Result.append_string (a_path.substring (2, a_path.count))
else
Result.append_string (a_path)
end
else
if a_path[1] = '/' then
Result.append_string (a_path)
else
Result.append_character ('/')
Result.append_string (a_path)
end
end
else
Result := a_path
end
else
Result := based_path (a_path)
end
if q /= Void then
Result.append ("?" + q)
end
if f /= Void then
Result.append ("#" + f)
end
end
checked_url (a_url: READABLE_STRING_8): READABLE_STRING_8
do
Result := a_url
end
end

View File

@@ -20,13 +20,13 @@ feature -- Basic operations
execute (req: WSF_REQUEST; res: WSF_RESPONSE) execute (req: WSF_REQUEST; res: WSF_RESPONSE)
-- Execute the filter -- Execute the filter
do do
if not setup.error_handler.has_error then if not api.error_handler.has_error then
log.write_information (generator + ".execute") log.write_information (generator + ".execute")
execute_next (req, res) execute_next (req, res)
else else
log.write_critical (generator + ".execute" + setup.error_handler.as_string_representation ) log.write_critical (generator + ".execute" + api.error_handler.as_string_representation )
(create {ERROR_500_CMS_RESPONSE}.make (req, res, setup)).execute (create {ERROR_500_CMS_RESPONSE}.make (req, res, api)).execute
setup.error_handler.reset api.error_handler.reset
end end
end end

View File

@@ -19,20 +19,20 @@ inherit
feature {NONE} -- Initialization feature {NONE} -- Initialization
make (a_setup: CMS_SETUP) make (a_api: CMS_API)
do do
setup := a_setup api := a_api
end end
feature -- Setup feature -- Setup
setup: CMS_SETUP setup: CMS_SETUP
do
Result := api.setup
end
feature -- API Service feature -- API Service
api_service: CMS_API_SERVICE api: CMS_API
do
Result := setup.api_service
end
end end

View File

@@ -48,7 +48,7 @@ feature -- HTTP Methods
do_get (req: WSF_REQUEST; res: WSF_RESPONSE) do_get (req: WSF_REQUEST; res: WSF_RESPONSE)
-- <Precursor> -- <Precursor>
do do
(create {HOME_CMS_RESPONSE}.make (req, res, setup)).execute (create {HOME_CMS_RESPONSE}.make (req, res, api)).execute
end end
end end

View File

@@ -7,18 +7,16 @@ deferred class
CMS_RESPONSE CMS_RESPONSE
inherit inherit
CMS_ENCODERS CMS_URL_UTILITIES
CMS_REQUEST_UTIL
REFACTORING_HELPER REFACTORING_HELPER
feature {NONE} -- Initialization feature {NONE} -- Initialization
make(req: WSF_REQUEST; res: WSF_RESPONSE; a_setup: like setup) make (req: WSF_REQUEST; res: WSF_RESPONSE; a_api: like api)
do do
status_code := {HTTP_STATUS_CODE}.ok status_code := {HTTP_STATUS_CODE}.ok
setup := a_setup api := a_api
request := req request := req
response := res response := res
create header.make create header.make
@@ -56,8 +54,14 @@ feature -- Access
response: WSF_RESPONSE response: WSF_RESPONSE
api: CMS_API
-- Current CMS API.
setup: CMS_SETUP setup: CMS_SETUP
-- Current setup -- Current setup
do
Result := api.setup
end
status_code: INTEGER status_code: INTEGER
@@ -73,6 +77,36 @@ feature -- Access
additional_page_head_lines: detachable LIST [READABLE_STRING_8] additional_page_head_lines: detachable LIST [READABLE_STRING_8]
-- HTML>head>...extra lines -- HTML>head>...extra lines
feature -- URL utilities
is_front: BOOLEAN
-- Is current response related to "front" page?
local
l_path_info: READABLE_STRING_8
do
l_path_info := request.path_info
if attached setup.front_page_path as l_front_page_path then
Result := l_front_page_path.same_string (l_path_info)
else
if attached base_url as l_base_url then
Result := l_path_info.same_string (l_base_url)
else
Result := l_path_info.is_empty or else l_path_info.same_string ("/")
end
end
end
site_url: READABLE_STRING_8
do
Result := absolute_host (request, "")
end
base_url: detachable READABLE_STRING_8
-- Base url if any.
--| Usually it is Void, but it could be
--| /project/demo/
--| FIXME: for now, no way to change that. Always at the root "/"
feature -- Access: CMS feature -- Access: CMS
site_name: STRING_32 site_name: STRING_32
@@ -88,6 +122,8 @@ feature -- Access: CMS
values: CMS_VALUE_TABLE values: CMS_VALUE_TABLE
-- Associated values indexed by string name. -- Associated values indexed by string name.
feature -- Permission feature -- Permission
-- FIXME: to be implemented has_permissions and has_permission. -- FIXME: to be implemented has_permissions and has_permission.
@@ -200,8 +236,15 @@ feature -- Menu
menu_system: CMS_MENU_SYSTEM menu_system: CMS_MENU_SYSTEM
main_menu: CMS_MENU main_menu: CMS_MENU
obsolete
"Use `primary_menu' [Nov/2014]"
do do
Result := menu_system.main_menu Result := primary_menu
end
primary_menu: CMS_MENU
do
Result := menu_system.primary_menu
end end
management_menu: CMS_MENU management_menu: CMS_MENU
@@ -222,8 +265,6 @@ feature -- Menu
primary_tabs: CMS_MENU primary_tabs: CMS_MENU
do do
Result := menu_system.primary_tabs Result := menu_system.primary_tabs
debug
end
end end
feature -- Blocks initialization feature -- Blocks initialization
@@ -319,7 +360,6 @@ feature -- Blocks
if attached navigation_menu_block as l_block then if attached navigation_menu_block as l_block then
add_block (l_block, "first_sidebar") add_block (l_block, "first_sidebar")
end end
if attached user_menu_block as l_block then if attached user_menu_block as l_block then
add_block (l_block, "first_sidebar") add_block (l_block, "first_sidebar")
end end
@@ -331,9 +371,9 @@ feature -- Blocks
hook_block_view hook_block_view
end end
main_menu_block: detachable CMS_MENU_BLOCK primary_menu_block: detachable CMS_MENU_BLOCK
do do
if attached main_menu as m and then not m.is_empty then if attached primary_menu as m and then not m.is_empty then
create Result.make (m) create Result.make (m)
end end
end end
@@ -378,21 +418,19 @@ feature -- Blocks
header_block: CMS_CONTENT_BLOCK header_block: CMS_CONTENT_BLOCK
local local
s: STRING s: STRING
tpl: SMARTY_CMS_PAGE_TEMPLATE
l_page: CMS_HTML_PAGE
l_hb: STRING l_hb: STRING
do do
create s.make_from_string (theme.menu_html (main_menu, True)) create s.make_from_string (theme.menu_html (primary_menu, True))
create l_hb.make_empty create l_hb.make_empty
create Result.make ("header", Void, l_hb, formats.full_html) create Result.make ("header", Void, l_hb, formats.full_html)
Result.set_is_raw (True) Result.set_is_raw (True)
end end
horizontal_main_menu_html: STRING horizontal_primary_menu_html: STRING
do do
create Result.make_empty create Result.make_empty
Result.append ("<div id=%"menu-bar%">") Result.append ("<div id=%"menu-bar%">")
Result.append (theme.menu_html (main_menu, True)) Result.append (theme.menu_html (primary_menu, True))
Result.append ("</div>") Result.append ("</div>")
end end
@@ -562,11 +600,15 @@ feature -- Hook: block
feature -- Menu: change feature -- Menu: change
add_to_main_menu (lnk: CMS_LINK) add_to_main_menu (lnk: CMS_LINK)
obsolete
"use add_to_primary_menu [Nov/2014]"
do do
-- if attached {CMS_LOCAL_LINK} lnk as l_local then add_to_primary_menu (lnk)
-- l_local.get_is_active (request) end
-- end
main_menu.extend (lnk) add_to_primary_menu (lnk: CMS_LINK)
do
add_to_menu (lnk, primary_menu)
end end
add_to_menu (lnk: CMS_LINK; m: CMS_MENU) add_to_menu (lnk: CMS_LINK; m: CMS_MENU)
@@ -679,11 +721,8 @@ feature -- Generation
prepare (page: CMS_HTML_PAGE) prepare (page: CMS_HTML_PAGE)
do do
common_prepare (page)
custom_prepare (page)
-- Menu -- Menu
add_to_main_menu (create {CMS_LOCAL_LINK}.make ("Home", "/")) add_to_primary_menu (create {CMS_LOCAL_LINK}.make ("Home", "/"))
call_menu_alter_hooks (menu_system) call_menu_alter_hooks (menu_system)
prepare_menu_system (menu_system) prepare_menu_system (menu_system)
@@ -702,30 +741,14 @@ feature -- Generation
end end
-- Values -- Values
if attached current_user_name (request) as l_user then common_prepare (page)
page.register_variable (l_user, "user") custom_prepare (page)
end
-- Cms values -- Cms values
call_value_alter_hooks (values) call_value_alter_hooks (values)
-- Predefined values -- Predefined values
if attached title as l_title then page.register_variable (page, "page") -- DO NOT REMOVE
page.set_title (l_title)
else
page.set_title ("CMS::" + request.path_info)
end
page.register_variable (page, "page")
-- page.register_variable (is_front, "is_front")
page.register_variable (request.absolute_script_url (""), "site_url")
page.register_variable (title, "site_title")
-- page.register_variable (site_name_and_slogan, "site_name_and_slogan")
-- if attached logo_location as l_logo then
-- page.register_variable (l_logo, "logo")
-- end
page.register_variable (horizontal_main_menu_html, "primary_nav")
-- Values Associated with current Execution object. -- Values Associated with current Execution object.
across across
@@ -753,32 +776,57 @@ feature -- Generation
page.head_lines.force (hl.item) page.head_lines.force (hl.item)
end end
end end
end end
common_prepare (page: CMS_HTML_PAGE) common_prepare (page: CMS_HTML_PAGE)
-- Common preparation for page `page'.
do do
fixme ("Fix generacion common") fixme ("Fix generation common")
page.register_variable (request.absolute_script_url (""), "host")
page.register_variable (setup.is_web, "web") -- Information
page.register_variable (setup.is_html, "html") page.set_title (title)
debug ("cms")
if title = Void then
page.set_title ("CMS::" + request.path_info) --| FIXME: probably, should be removed and handled by theme.
end
end
-- Variables
page.register_variable (request.absolute_script_url (""), "site_url")
page.register_variable (request.absolute_script_url (""), "host") -- Same as `site_url'.
if attached current_user_name (request) as l_user then if attached current_user_name (request) as l_user then
page.register_variable (l_user, "user") page.register_variable (l_user, "user")
end end
page.register_variable (title, "site_title")
page.set_is_front (is_front)
-- Variables/Setup
page.register_variable (setup.is_web, "web")
page.register_variable (setup.is_html, "html")
-- Variables/Misc
-- FIXME: logo .. could be a settings of theme, managed by admin front-end/database.
-- if attached logo_location as l_logo then
-- page.register_variable (l_logo, "logo")
-- end
-- Menu...
page.register_variable (horizontal_primary_menu_html, "primary_nav")
end end
custom_prepare (page: CMS_HTML_PAGE) custom_prepare (page: CMS_HTML_PAGE)
-- Common preparation for page `page' that can be redefined by descendants.
do do
end end
prepare_menu_system (a_menu_system: CMS_MENU_SYSTEM) prepare_menu_system (a_menu_system: CMS_MENU_SYSTEM)
do do
-- across across
-- a_menu_system as c a_menu_system as c
-- loop loop
-- prepare_links (c.item) prepare_links (c.item)
-- end end
end end
prepare_links (a_menu: CMS_LINK_COMPOSITE) prepare_links (a_menu: CMS_LINK_COMPOSITE)
@@ -794,7 +842,7 @@ feature -- Generation
-- to_remove.force (lm) -- to_remove.force (lm)
-- else -- else
-- if lm.permission_arguments is Void , this is permitted -- if lm.permission_arguments is Void , this is permitted
-- lm.get_is_active (request) get_local_link_active_status (lm)
if attached {CMS_LINK_COMPOSITE} lm as comp then if attached {CMS_LINK_COMPOSITE} lm as comp then
prepare_links (comp) prepare_links (comp)
end end
@@ -821,7 +869,7 @@ feature -- Generation
loop loop
ln := ic.item ln := ic.item
if attached {CMS_LOCAL_LINK} ln as l_local then if attached {CMS_LOCAL_LINK} ln as l_local then
-- l_local.get_is_active (request) get_local_link_active_status (l_local)
end end
if (ln.is_expanded or ln.is_collapsed) and then attached {CMS_LINK_COMPOSITE} ln as l_comp then if (ln.is_expanded or ln.is_collapsed) and then attached {CMS_LINK_COMPOSITE} ln as l_comp then
recursive_get_active (l_comp, req) recursive_get_active (l_comp, req)
@@ -830,6 +878,23 @@ feature -- Generation
end end
end end
get_local_link_active_status (a_lnk: CMS_LOCAL_LINK)
-- Get `a_lnk.is_active' value according to `request' data.
local
qs: STRING
l_is_active: BOOLEAN
do
create qs.make_from_string (request.percent_encoded_path_info)
l_is_active := qs.same_string (a_lnk.location)
if not l_is_active then
if attached request.query_string as l_query_string and then not l_query_string.is_empty then
qs.append_character ('?')
qs.append (l_query_string)
end
l_is_active := qs.same_string (a_lnk.location)
end
a_lnk.set_is_active (l_is_active)
end
feature -- Custom Variables feature -- Custom Variables

View File

@@ -21,8 +21,8 @@ feature -- Generation
custom_prepare (page: CMS_HTML_PAGE) custom_prepare (page: CMS_HTML_PAGE)
do do
page.register_variable (request.absolute_script_url (request.path_info), "request") page.register_variable (request.absolute_script_url (request.path_info), "request")
page.register_variable ("500", "code") page.set_status_code ({HTTP_STATUS_CODE}.internal_server_error)
page.set_status_code (500) page.register_variable (page.status_code.out, "code")
end end
feature -- Execution feature -- Execution

View File

@@ -21,7 +21,7 @@ feature -- Generation
custom_prepare (page: CMS_HTML_PAGE) custom_prepare (page: CMS_HTML_PAGE)
do do
Precursor (page) Precursor (page)
page.register_variable (setup.api_service.recent_nodes (0, 5), "nodes") page.register_variable (api.recent_nodes (0, 5), "nodes")
end end
feature -- Execution feature -- Execution

View File

@@ -0,0 +1,37 @@
note
description: "Summary description for {NOT_IMPLEMENTED_ERROR_CMS_RESPONSE}."
date: "$Date$"
revision: "$Revision$"
class
NOT_IMPLEMENTED_ERROR_CMS_RESPONSE
inherit
CMS_RESPONSE
redefine
custom_prepare
end
create
make
feature -- Generation
custom_prepare (page: CMS_HTML_PAGE)
do
page.register_variable (request.absolute_script_url (request.path_info), "request")
page.register_variable ("501", "code")
page.set_status_code (501)
end
feature -- Execution
process
-- Computed response message.
do
set_title ("Not Implemented")
set_page_title (Void)
end
end

View File

@@ -38,7 +38,9 @@ feature -- Access
-- Optional page type. -- Optional page type.
-- such as "front", "about", ... that could be customized by themes. -- such as "front", "about", ... that could be customized by themes.
title: detachable STRING is_front: BOOLEAN
title: detachable READABLE_STRING_32
language: STRING language: STRING
@@ -59,6 +61,7 @@ feature -- Access
feature -- Status feature -- Status
status_code: INTEGER status_code: INTEGER
feature -- Header feature -- Header
@@ -87,6 +90,12 @@ feature -- Region
feature -- Element change feature -- Element change
set_is_front (b: BOOLEAN)
-- Set `is_front' to `b'.
do
is_front := b
end
register_variable (a_value: detachable ANY; k: READABLE_STRING_GENERAL) register_variable (a_value: detachable ANY; k: READABLE_STRING_GENERAL)
do do
variables.force (a_value, k) variables.force (a_value, k)

View File

@@ -13,6 +13,8 @@ inherit
internal_data internal_data
end end
CMS_ENCODERS
create create
register register
@@ -29,7 +31,13 @@ feature {TEMPLATE_ROUTINES}
if attached l_page.variables.item (l_fn) as v then if attached l_page.variables.item (l_fn) as v then
Result := cell_of (v) Result := cell_of (v)
elseif l_fn.is_case_insensitive_equal ("title") then elseif l_fn.is_case_insensitive_equal ("title") then
Result := cell_of (l_page.title) if attached l_page.title as l_title then
Result := cell_of (html_encoded (l_title))
else
Result := cell_of (Void)
end
elseif l_fn.is_case_insensitive_equal ("is_front") then
Result := cell_of (l_page.is_front)
elseif l_fn.starts_with_general ("region_") then elseif l_fn.starts_with_general ("region_") then
l_fn.remove_head (7) -- remove "region_" l_fn.remove_head (7) -- remove "region_"
Result := cell_of (l_page.region (l_fn)) Result := cell_of (l_page.region (l_fn))

View File

@@ -9,6 +9,8 @@ class
inherit inherit
CMS_PAGE_TEMPLATE CMS_PAGE_TEMPLATE
CMS_ENCODERS
SHARED_TEMPLATE_CONTEXT SHARED_TEMPLATE_CONTEXT
create create
@@ -41,12 +43,13 @@ feature -- Access
variables.force (ic.item, ic.key) variables.force (ic.item, ic.key)
end end
-- FIXME: review variables !
if attached page.title as l_title then if attached page.title as l_title then
variables.force (l_title, "page_title") variables.force (html_encoded (l_title), "head_title")
variables.force (l_title, "head_title") variables.force (html_encoded (l_title), "page_title")
else else
variables.force ("CMS", "head_title")
variables.force ("", "page_title") variables.force ("", "page_title")
variables.force ("", "head_title")
end end
variables.force (page.language, "language") variables.force (page.language, "language")

View File

@@ -22,6 +22,7 @@
<library name="http_authorization" location="$ISE_LIBRARY\contrib\library\network\authentication\http_authorization\http_authorization-safe.ecf" readonly="false"/> <library name="http_authorization" location="$ISE_LIBRARY\contrib\library\network\authentication\http_authorization\http_authorization-safe.ecf" readonly="false"/>
<library name="json" location="$ISE_LIBRARY\contrib\library\text\parser\json\library\json-safe.ecf" readonly="false"/> <library name="json" location="$ISE_LIBRARY\contrib\library\text\parser\json\library\json-safe.ecf" readonly="false"/>
<library name="layout" location="..\..\layout\layout-safe.ecf"/> <library name="layout" location="..\..\layout\layout-safe.ecf"/>
<library name="model" location="..\..\model\model-safe.ecf" readonly="false"/>
<library name="logging" location="$ISE_LIBRARY\library\runtime\logging\logging-safe.ecf"/> <library name="logging" location="$ISE_LIBRARY\library\runtime\logging\logging-safe.ecf"/>
<library name="net" location="$ISE_LIBRARY\library\net\net-safe.ecf"/> <library name="net" location="$ISE_LIBRARY\library\net\net-safe.ecf"/>
<library name="process" location="$ISE_LIBRARY\library\process\process-safe.ecf"/> <library name="process" location="$ISE_LIBRARY\library\process\process-safe.ecf"/>

View File

@@ -12,6 +12,7 @@
<library name="base" location="$ISE_LIBRARY\library\base\base-safe.ecf"/> <library name="base" location="$ISE_LIBRARY\library\base\base-safe.ecf"/>
<library name="base_extension" location="$ISE_LIBRARY\library\base_extension\base_extension-safe.ecf"/> <library name="base_extension" location="$ISE_LIBRARY\library\base_extension\base_extension-safe.ecf"/>
<library name="cms" location="..\..\..\..\cms\cms-safe.ecf" readonly="false"/> <library name="cms" location="..\..\..\..\cms\cms-safe.ecf" readonly="false"/>
<library name="cms_model" location="..\..\..\..\model\model-safe.ecf" readonly="false"/>
<library name="http" location="$ISE_LIBRARY\contrib\library\network\protocol\http\http-safe.ecf"/> <library name="http" location="$ISE_LIBRARY\contrib\library\network\protocol\http\http-safe.ecf"/>
<library name="json" location="$ISE_LIBRARY\contrib\library\text\parser\json\library\json-safe.ecf" readonly="false"/> <library name="json" location="$ISE_LIBRARY\contrib\library\text\parser\json\library\json-safe.ecf" readonly="false"/>
<library name="time" location="$ISE_LIBRARY\library\time\time-safe.ecf"/> <library name="time" location="$ISE_LIBRARY\library\time\time-safe.ecf"/>

View File

@@ -9,45 +9,91 @@ class
inherit inherit
CMS_MODULE CMS_MODULE
redefine
register_hooks
end
CMS_HOOK_MENU_ALTER
CMS_HOOK_BLOCK
create create
make make
feature {NONE} -- Initialization feature {NONE} -- Initialization
make (a_config: CMS_SETUP) make
do do
name := "Demo module" name := "Demo module"
version := "1.0" version := "1.0"
description := "Service to demonstrate and test cms system" description := "Service to demonstrate and test cms system"
package := "demo" package := "demo"
config := a_config
end end
config: CMS_SETUP
-- Node configuration.
feature -- Access: router feature -- Access: router
router: WSF_ROUTER router (a_api: CMS_API): WSF_ROUTER
-- Node router. -- Node router.
do do
create Result.make (2) create Result.make (2)
map_uri_template_agent (Result, "/demo/", agent handle_demo) map_uri_template_agent (Result, "/demo/", agent handle_demo (?,?,a_api))
map_uri_template_agent (Result, "/book/{id}", agent handle_demo_entry) map_uri_template_agent (Result, "/demo/{id}", agent handle_demo_entry (?,?,a_api))
end
feature -- Hooks
register_hooks (a_response: CMS_RESPONSE)
do
a_response.add_menu_alter_hook (Current)
a_response.add_block_hook (Current)
end
block_list: ITERABLE [like {CMS_BLOCK}.name]
do
Result := <<"demo-info">>
end
get_block_view (a_block_id: READABLE_STRING_8; a_response: CMS_RESPONSE)
local
b: CMS_CONTENT_BLOCK
mb: CMS_MENU_BLOCK
m: CMS_MENU
lnk: CMS_LOCAL_LINK
do
if a_block_id.is_case_insensitive_equal_general ("demo-info") then
if a_response.request.request_uri.starts_with ("/demo/") then
create m.make_with_title (a_block_id, "Demo", 2)
create lnk.make ("/demo/abc", a_response.url ("/demo/abc", Void))
m.extend (lnk)
create lnk.make ("/demo/123", a_response.url ("/demo/123", Void))
m.extend (lnk)
create mb.make (m)
a_response.add_block (mb, "sidebar_second")
end
end
end
menu_alter (a_menu_system: CMS_MENU_SYSTEM; a_response: CMS_RESPONSE)
local
lnk: CMS_LOCAL_LINK
-- perms: detachable ARRAYED_LIST [READABLE_STRING_8]
do
create lnk.make ("Demo", "/demo/")
a_menu_system.primary_menu.extend (lnk)
end end
feature -- Handler feature -- Handler
handle_demo, handle_demo,
handle_demo_entry (req: WSF_REQUEST; res: WSF_RESPONSE) handle_demo_entry (req: WSF_REQUEST; res: WSF_RESPONSE; a_api: CMS_API)
local local
m: WSF_NOT_FOUND_RESPONSE r: NOT_IMPLEMENTED_ERROR_CMS_RESPONSE
do do
create m.make (req) create r.make (req, res, a_api)
m.set_body ("Not yet implemented!") r.set_main_content ("NODE module does not yet implement %"" + req.path_info + "%" ...")
res.send (m) r.add_error_message ("NODE Module: not yet implemented")
r.execute
end end
feature -- Mapping helper: uri template feature -- Mapping helper: uri template
@@ -90,11 +136,4 @@ feature -- Mapping helper: uri template agent
map_uri_template_with_request_methods (a_router, a_tpl, create {WSF_URI_TEMPLATE_AGENT_HANDLER}.make (proc), rqst_methods) map_uri_template_with_request_methods (a_router, a_tpl, create {WSF_URI_TEMPLATE_AGENT_HANDLER}.make (proc), rqst_methods)
end end
feature -- Hooks
register_hooks (a_response: CMS_RESPONSE)
do
end
end end

View File

@@ -21,11 +21,11 @@
</head> </head>
<body> <body>
<head> <head>
<title>{$page_title/}</title> <title>{$head_title/}</title>
</head> </head>
<body> <body>
<!-- Page Top --> <!-- Page Top -->
{if isset="$top"} {if isset="$region_top"}
{$region_top/} {$region_top/}
{/if} {/if}
<!-- Body --> <!-- Body -->
@@ -40,35 +40,42 @@
<!-- General Page Content --> <!-- General Page Content -->
<div id='content' class='row-fluid'> <div id='content' class='row-fluid'>
<!-- Left Sidebar sidebar_first -->
{unless empty="$page.region_sidebar_first"}
<div style="float: left;">
{$page.region_sidebar_first/}
</div>
{/unless}
<!-- Left Side Bard sidebar_first -->
{$region_sidebar_first/}
<!-- Highlighted, Help, Content --> <!-- Highlighted, Help, Content -->
<div class='span8 main'> <div class='span8 main'>
<!-- Highlighted Section --> <!-- Highlighted Section -->
{$region_highlighted/} {$page.region_highlighted/}
<!-- Help Section --> <!-- Help Section -->
{$region_help/} {$page.region_help/}
<!-- Main Content Section --> <!-- Main Content Section -->
{$region_main/} {unless empty="$page_title"}<h1 class="page-title">{$page_title/}</h1>{/unless}
{$page.region_content/}
</div> </div>
<!-- Right Side Bard sidebar_second--> <!-- Right Sidebar sidebar_second-->
{$region_sidebar_second/} {unless empty="$page.region_sidebar_second"}
<div style="float: right;">
{$page.region_sidebar_second/}
</div>
{/unless}
</div> </div>
</div> </div>
<!--Page footer --> <!--Page footer -->
{$region_footer/} {$page.region_footer/}
<!-- Page Bottom --> <!-- Page Bottom -->
{$region_bottom/} {$page.region_bottom/}
</body> </body>
<script type="text/javascript"> <script type="text/javascript">

View File

@@ -4,8 +4,7 @@
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span> <span class="sr-only">Toggle navigation</span>
</button> </button>
<a class="navbar-brand" href="${site_url/}" itemprop="home" rel="home">{$site_name/}</a> <a class="navbar-brand" href="{$site_url/}" itemprop="home" rel="home">{unless isset="$site_name"}Eiffel CMS{/unless}{if isset="$site_name"}{$site_name/}{/if}</a>
<a class="navbar-brand" href="https://www2.eiffel.com/beta" itemprop="home" rel="home">Eiffel CMS</a>
</div> </div>

View File

@@ -117,12 +117,12 @@ feature -- CMS Initialization
initialize_cms (a_setup: CMS_SETUP) initialize_cms (a_setup: CMS_SETUP)
local local
cms: CMS_SERVICE cms: CMS_SERVICE
api: CMS_API
do do
log.write_debug (generator + ".initialize_cms") log.write_debug (generator + ".initialize_cms")
setup_modules (a_setup) setup_modules (a_setup)
create api.make (a_setup)
create cms.make (a_setup) create cms.make (api)
cms_service := cms cms_service := cms
end end
@@ -133,14 +133,13 @@ feature -- CMS setup
local local
m: CMS_MODULE m: CMS_MODULE
do do
create {BASIC_AUTH_MODULE} m.make (a_setup) create {BASIC_AUTH_MODULE} m.make
m.enable m.enable
a_setup.modules.extend (m) a_setup.modules.extend (m)
create {CMS_DEMO_MODULE} m.make (a_setup) create {CMS_DEMO_MODULE} m.make
m.enable m.enable
a_setup.modules.extend (m) a_setup.modules.extend (m)
end end
setup_storage (a_setup: CMS_SETUP) setup_storage (a_setup: CMS_SETUP)

View File

@@ -98,6 +98,14 @@ feature -- Element change
children := lst children := lst
end end
feature -- Status change
set_is_active (b: BOOLEAN)
-- Set `is_active' to `b'.
do
is_active := b
end
set_expanded (b: like is_expanded) set_expanded (b: like is_expanded)
do do
if b then if b then

View File

@@ -167,6 +167,7 @@ feature -- LOGIN and DATABASE_APPL only for password_ok
password_ok (upasswd: STRING): BOOLEAN password_ok (upasswd: STRING): BOOLEAN
-- Can the user password be Void? -- Can the user password be Void?
do do
Result := True
end end
password_ensure (name, passwd, uname, upasswd: STRING): BOOLEAN password_ensure (name, passwd, uname, upasswd: STRING): BOOLEAN