0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/server/errors
Katharina Irrgang 1882278b5b 🎨 configurable logging with bunyan (#7431)
- 🛠  add bunyan and prettyjson, remove morgan

-   add logging module
  - GhostLogger class that handles setup of bunyan
  - PrettyStream for stdout

-   config for logging
  - @TODO: testing level fatal?

-   log each request via GhostLogger (express middleware)
  - @TODO: add errors to output

- 🔥  remove errors.updateActiveTheme
  - we can read the value from config

- 🔥  remove 15 helper functions in core/server/errors/index.js
  - all these functions get replaced by modules:
    1. logging
    2. error middleware handling for html/json
    3. error creation (which will be part of PR #7477)

-   add express error handler for html/json
  - one true error handler for express responses
  - contains still some TODO's, but they are not high priority for first implementation/integration
  - this middleware only takes responsibility of either rendering html responses or return json error responses

- 🎨  use new express error handler in middleware/index
  - 404 and 500 handling

- 🎨  return error instead of error message in permissions/index.js
  - the rule for error handling should be: if you call a unit, this unit should return a custom Ghost error

- 🎨  wrap serve static module
  - rule: if you call a module/unit, you should always wrap this error
  - it's always the same rule
  - so the caller never has to worry about what comes back
  - it's always a clear error instance
  - in this case: we return our notfounderror if serve static does not find the resource
  - this avoid having checks everywhere

- 🎨  replace usages of errors/index.js functions and adapt tests
  - use logging.error, logging.warn
  - make tests green
  - remove some usages of logging and throwing api errors -> because when a request is involved, logging happens automatically

- 🐛  return errorDetails to Ghost-Admin
  - errorDetails is used for Theme error handling

- 🎨  use 500er error for theme is missing error in theme-handler

- 🎨  extend file rotation to 1w
2016-10-04 16:33:43 +01:00
..
bad-request-error.js 🎨 configurable logging with bunyan (#7431) 2016-10-04 16:33:43 +01:00
data-import-error.js Disambiguate between error code & status code 2016-02-17 15:20:49 +00:00
database-not-populated.js feature: maintenance mode (#7019) 2016-07-15 17:22:41 +01:00
database-version.js feature: maintenance mode (#7019) 2016-07-15 17:22:41 +01:00
email-error.js 🎨 configurable logging with bunyan (#7431) 2016-10-04 16:33:43 +01:00
incorrect-usage.js post-scheduling 2016-06-14 10:52:13 +02:00
index.js 🎨 configurable logging with bunyan (#7431) 2016-10-04 16:33:43 +01:00
internal-server-error.js 🎨 configurable logging with bunyan (#7431) 2016-10-04 16:33:43 +01:00
maintenance.js feature: maintenance mode (#7019) 2016-07-15 17:22:41 +01:00
method-not-allowed-error.js Disambiguate between error code & status code 2016-02-17 15:20:49 +00:00
no-permission-error.js Disambiguate between error code & status code 2016-02-17 15:20:49 +00:00
not-found-error.js Disambiguate between error code & status code 2016-02-17 15:20:49 +00:00
request-too-large-error.js Disambiguate between error code & status code 2016-02-17 15:20:49 +00:00
theme-validation-error.js 🎨 Improve theme validation error messaging (#7253) 2016-08-24 14:45:54 +02:00
token-revocation-error.js Refactor authentication API into pipeline format 2016-03-07 11:53:54 -06:00
too-many-requests-error.js 🎨 configurable logging with bunyan (#7431) 2016-10-04 16:33:43 +01:00
unauthorized-error.js 🎨 configurable logging with bunyan (#7431) 2016-10-04 16:33:43 +01:00
unsupported-media-type-error.js Disambiguate between error code & status code 2016-02-17 15:20:49 +00:00
validation-error.js 🎨 configurable logging with bunyan (#7431) 2016-10-04 16:33:43 +01:00
version-mismatch-error.js Version matching middleware 2016-06-09 17:08:44 +01:00