View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
1089 | Composr | commandr | public | 2013-03-17 13:52 | 2020-02-23 15:57 |
Reporter | Chris Graham | Assigned To | Chris Graham | ||
Priority | normal | Severity | feature | ||
Status | resolved | Resolution | fixed | ||
Summary | 1089: Commandr-fs content hooks | ||||
Description | Add a new abstract CRUD/REST-style internal content API via Commandr-fs. Implement this for all the content_meta_aware and resource_meta_aware hooks, adapting the existing hooks to reference the new Commandr-fs for that hook. The content_meta_aware/resource_meta_aware hook must specify whether they are operating on directories (categories) or files (entries). i.e. we don't implement separate Commandr-fs hooks for category and entry types, they are shared by one hook, which handles them as directories and files. Content-types will be uniquely identified by a URL moniker. In order to facilitate quick and consistent implementation of the hooks, they will inherit from a superclass which defines some of this functionality automatically. Our Commandr-fs objects should have the following methods, roughly... class … extends commandr_fs_cma_bridge { function find_id_by_context($context) { } function find_id_by_name_and_context($name,$context) { } function add($name,$context) { } function delete($id) { } // Most of the following will inherit, so actually will be defined in commandr_fs_cma_bridge function set_properties_via_cloning($id,$from_id) { } function set_properties_via_import($id,$file_path) { } function set_property($id,$key,$val) { } function set_content_access($id,$groups) { } function set_content_privileges_from_preset($id,$group_presets,$assume_full_group_coverage=true) { } function set_content_privileges($id,$group_settings,$assume_full_group_coverage =true) { } function set_content_privileges_from_preset__member($id,$member_preset) { } function set_content_privileges__member($id,$privilege,$setting) { } function find_cma_hook() { } } We need a function defined in the existing Composr content API… function find_commandr_s_hook_for($content_type) { } This allows easy integration of the existing content API, with the more sophisticated CRUD Commandr-fs API. | ||||
Tags | No tags attached. | ||||
Attach Tags | |||||
Time estimation (hours) | 8 | ||||
Sponsorship open | |||||
parent of | 1113 | Resolved | Chris Graham | Composr | Aggregate Content Types |
parent of | 1139 | Not Assigned | Guest | Composr | Commandr-fs resource hook - theme images |
parent of | 1138 | Resolved | Chris Graham | Composr | Commandr-fs resource hook - newsletters |
parent of | 1137 | Resolved | Chris Graham | Composr | Commandr-fs resource hook - emoticons |
parent of | 1136 | Resolved | Chris Graham | Composr | Commandr-fs resource hook - filedump |
parent of | 1135 | Resolved | Chris Graham | Composr | Commandr-fs resource hook - point-store |
parent of | 1134 | Resolved | Chris Graham | Composr | Commandr-fs resource hook - staff stuff |
parent of | 1133 | Not Assigned | Guest | Composr | Commandr-fs resource hook - chat messages |
parent of | 1132 | Not Assigned | Guest | Composr non-bundled addons | Commandr-fs resource hook - billboard |
parent of | 1131 | Not Assigned | Guest | Composr | Commandr-fs resource hook - warning templates |
parent of | 1130 | Not Assigned | Guest | Composr | Commandr-fs resource hook - private topic invitations |
parent of | 1129 | Not Assigned | Guest | Composr | Commandr-fs resource hook - quiz entries |
parent of | 1128 | Resolved | Chris Graham | Composr | Commandr-fs resource hook - word-filter |
parent of | 1127 | Resolved | Chris Graham | Composr | Commandr-fs resource hook - HTTPS settings |
parent of | 1126 | Resolved | Chris Graham | Composr | Commandr-fs resource hook - gathered feedback info |
parent of | 1125 | Resolved | Chris Graham | Composr | Commandr-fs resource hook - member settings |
parent of | 1124 | Not Assigned | Guest | Composr | Commandr-fs resource hook - event reminders |
parent of | 1090 | Resolved | Chris Graham | Composr | WebDav for Commandr-fs |
parent of | 1140 | Not Assigned | Guest | Composr non-bundled addons | Commandr-fs resource hook - classifieds |
parent of | 1141 | Not Assigned | Guest | Composr non-bundled addons | Commandr-fs resource hook - gifts |
parent of | 1142 | Not Assigned | Guest | Composr non-bundled addons | Commandr-fs resource hook - diseases |
parent of | 1143 | Not Assigned | Guest | Composr non-bundled addons | Commandr-fs resource hook - activities |
parent of | 1145 | Not Assigned | Guest | Composr non-bundled addons | Commandr-fs resource hook - booking |
parent of | 1146 | Not Assigned | Guest | Composr non-bundled addons | Commandr-fs resource hook - workflow |
parent of | 1147 | Resolved | Chris Graham | Composr | Commandr-fs resource hook - redirects |
parent of | 1151 | Resolved | Chris Graham | Composr | Commandr-fs resource hook - welcome emails |
related to | 1123 | Not Assigned | Guest | Composr | Implement CMIS |
Not all the children of this issue are yet resolved or closed. |
|
While everything discussed here is done, there's some testing and detail work to be done for this, which has become Composr's new "Resource-FS" system. This is going to be finished in the next few days, but I'll put down here for reference... Do a search of a Resource-FS hook's structure if it fails to look up a label, to confirm it really is missing - but only if we don't have too much of that content type (i.e. a safeguard) Unit tests for resource-fs, life-cycle each resource type with lots of asserts (partially done, 'delete' ops not yet fully passing) Unit tests for aggregate content types (ACT), life-cycling Test ACT UI Test ACT in detail "Explicit move flag" used for Wiki+ page path, as currently prevents multi-categorisation of pages Make sure GUIDs are explicitly set/specified for the resources auto-created when a match failed (currently it's not done) Implement _folder.xml |
|
^ all done |