summaryrefslogtreecommitdiff
path: root/system/api/server.go
AgeCommit message (Collapse)Author
2017-04-25adding support for file upload type and API handler to fetch file infoSteve Manuel
2017-04-17package documentation for godocSteve Manuel
2017-04-07add initial implementation of api search handler with full-text search by typeSteve Manuel
2017-03-15changing API for external client interaction. Externalable -> Createable, ↵Steve Manuel
+Deleteable, changing Hookable interface methods to conform to pattern: BeforeAPI$ACTION, etc.
2017-03-01adding update to apiKevin Keuning
2017-01-19adding CORS middleware to external API endpoints for browser complianceSteve Manuel
2017-01-16[core] Adding toggle for CORS, GZIP in admin/cms configuration (#30)Steve
This PR enables admins to disable/enable CORS and GZIP from within the admin CMS configuration page. Both are enabled by default. Note: currently, the GZIP implementation is 100% on the fly, for every qualifying API endpoint request. This could add significant CPU usage, but dramatically decreases bandwidth. Will be considering other better implementations, but for now YMMV. Possible optimizations: - pooling gzip Writers vs. creating a new one for each response - caching gzipped responses (in memory? on disk?) - enforcing size threshold (only gzip content larger than N bytes)
2016-12-19[addons] Creating foundation for plugin-like system "Addons" (#24)Steve
* adding addons dir and sample addon which enables the use of a new input element in forms for referencing other content. "addons" is a conceptual plugin-like feature, similar to wordpress "plugins" dir, but not as sophisticated
2016-12-06/*post?s*/ => /*content?s*/ substitutionSteve Manuel
2016-11-03renaming handler and path match for api server - post => contentSteve Manuel
2016-11-01adding analytics tracking to API callsSteve Manuel
2016-11-01adding analytics tracking to API callsSteve Manuel
2016-10-26debugging and code reorgSteve Manuel
2016-10-09adding CORS support and separaring some api handliers into own fileSteve Manuel
2016-10-06adding authentication & token-based persistence for users, init setup for ↵Steve Manuel
first-use, pulling out some handlers into separate file for readability and navigation
2016-10-04implementing support for file uploads, fixing some content issues with ↵Steve Manuel
non-standard characters, removing base64 encoding of content
2016-09-24creating JSON API server, initial version workingSteve Manuel