influxdb/authorizer
Lyon Hill 3c6779f011
feat(task): Allow tasks to run more isolated from other task systems (#15384)
* feat(task): Allow tasks to run more isolated from other task systems

To allow the task internal system to be used for user created tasks as well
as checks, notification and other future additions we needed to take 2 actions:

1 - We need to use type as a first class citizen, meaning that task's have a type
and each system that will be creating tasks will set the task type through the api.
This is a change to the previous assumption that any user could set task types. This change
will allow us to have other service's white label the task service for their own purposes and not
have to worry about colissions between the types.

2 - We needed to allow other systems to add data specific to the problem they are trying to solve.
For this purpose adding a `metadata` field to the internal task system which should allow other systems to
use the task service.

These changes will allow us in the future to allow for the current check's and notifications implementations
to create a task with meta data instead of creating a check object and a task object in the database.
By allowing this new behavior checks, notifications, and user task's can all follow the same pattern:

Field an api request in a system specific http endpoint, use a small translation to the `TaskService` function call,
translate the results to what the api expects for this system, and return results.

* fix(task): undo additional check for ownerID because check is not ready
2019-10-11 08:53:38 -06:00
..
auth.go if(influxdb): updated auth shall return 2019-04-01 12:56:29 -04:00
auth_test.go if(influxdb): updated auth shall return 2019-04-01 12:56:29 -04:00
authorize.go feat(influxdb): authorize org service operations 2019-01-16 14:41:57 -05:00
bucket.go feat(http): block writes to system buckets (#14920) 2019-09-05 11:22:18 -07:00
bucket_test.go remove org from bucket 2019-04-22 18:39:05 -04:00
check.go feat(influxdb): user disabling 2019-09-23 11:57:16 -07:00
check_test.go feat(influxdb): user disabling 2019-09-23 11:57:16 -07:00
dashboard.go feat(authorizer): add authorized dashboard service 2019-01-17 16:04:16 -05:00
dashboard_test.go test(authorizer): add dashboard service tests 2019-01-17 16:04:16 -05:00
label.go organizationID -> orgID 2019-04-12 01:29:42 -07:00
label_test.go organizationID -> orgID 2019-04-12 01:29:42 -07:00
notification_endpoint.go fix(http): fix notfication endpoint secret store 2019-08-28 16:02:17 -04:00
notification_endpoint_test.go fix(http): fix notfication endpoint secret store 2019-08-28 16:02:17 -04:00
notification_rule.go feat(influxdb): user disabling 2019-09-23 11:57:16 -07:00
notification_rule_test.go feat(influxdb): user disabling 2019-09-23 11:57:16 -07:00
org.go feat(influxdb): authorize org service operations 2019-01-16 14:41:57 -05:00
org_test.go feat(authorizer): add authorized bucket service 2019-01-16 15:37:19 -05:00
scraper.go check write bucket permission when creating a scraper 2019-05-15 21:44:23 +08:00
scraper_test.go check write bucket permission when creating a scraper 2019-05-15 21:44:23 +08:00
secret.go Fix typos in miscellaneous packages 2019-04-17 13:30:22 -07:00
secret_test.go chore(authorizer): refactor order of checks 2019-01-22 19:23:23 +01:00
source.go fix(authorizer): allow default source orgID to be in the sources list 2019-01-18 13:14:43 -05:00
source_test.go feat(authorizer): source authorizer 2019-01-18 14:05:36 +01:00
task.go feat(task): Allow tasks to run more isolated from other task systems (#15384) 2019-10-11 08:53:38 -06:00
task_test.go feat(task): Allow tasks to run more isolated from other task systems (#15384) 2019-10-11 08:53:38 -06:00
telegraf.go fix(influxdb): rename telegraf orgID 2019-06-03 16:20:53 -04:00
telegraf_test.go fix(influxdb): rename telegraf orgID 2019-06-03 16:20:53 -04:00
urm.go feat(influxdb): add authorized user resource mappings 2019-01-18 14:22:08 -05:00
urm_test.go feat(influxdb): add authorized user resource mappings 2019-01-18 14:22:08 -05:00
user.go feat(influxdb): add authorization for user actions 2019-01-17 16:05:24 -05:00
user_test.go feat(influxdb): add authorization for user actions 2019-01-17 16:05:24 -05:00
util_test.go feat(authorizer): add authorized bucket service 2019-01-16 15:37:19 -05:00
variable.go Rename all occurences of Macro to Variable 2019-02-14 13:21:57 -08:00
variable_test.go feat(influxd): Tracing refactor (#12318) 2019-03-04 11:48:11 -08:00