Skip to content

Pondidum/Crispin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Crispin

Restful Feature Toggle Service

Build status

Tasks

  • create aggregateRoot base class
  • create Toggle class
  • add ability to switch toggles on and off
  • add tagging functionality
  • implement AllToggles projection
  • implement LoggingProjection
  • ensure all events have a userID
  • design storage api
    • in memory implementation
  • http api
    • fetching toggles needs to be aware of who the user is querying, as a toggle could be on or off based on user/group
      • a header of some form would be enough I think, something like X-CRISPIN-USER
      • no header means anonymous, gets the "everyone" state of the toggle
      • views will need to be aware of multiple states of toggles
    • /toggles
      • GET =>[ { toggleview }, { toggleview } ]
      • POST => { name, description } => 201 created, /toggles/id/{id}
      • /id/{id}
        • GET => { toggleview }
        • /state
          • GET => [ { type: user, id: xxx, state: active }, { type: group, id: yyy, state: inactive} ]
          • POST => { type: user, id: xxx }
          • DELETE => { type: user, id: xxx }
        • tags
          • GET => [ tag, tag, tag ]
          • /{tagName}
            • PUT => [ tag, tag, tag ]
            • DELETE => [ tag, tag, tag ]
      • /name/{name}
        • /state
          • see id/state
        • /tags
          • see id/tags
    • /stats
      • ???
    • /management
      • /users
        • ???
  • design statistics logging
    • stats include querying
  • use custom exceptions for domain exceptions (e.g. currently using KeyNotFound, should be ToggleNotFound)
  • replace ValidationMiddleware with a ValidationActionFilter instead
  • refactor /tags endpoint
    • something like PUT /tags/some-tag-name and DELETE /tags/some-tag-name
  • refactor /state endpoint, something like
    • PUT /state/user/{userid} : { active: true } to activate or deactivate
    • DELETE /state/user/{userid} to clear state setting
  • toggle: implement validation of tag names
  • replace default handler with 404

Ideas

  • distribute as a docker container
  • should have user providable storage backends
    • ship with a filestore by default
    • other likely options:
      • s3
      • redis
      • sql
  • logging of toggles
    • created
    • changed
    • queried
  • features
    • tags (e.g. "my-app", "webserver")
    • environments (e.g. "dev", "test", "prod") (can these be done as tags?)
  • api
    • fetching toggle states (id, name, description, state)
    • fetching toggle statistics (id, name, description, state, events=[])
    • compatability endpoints
      • e.g. /darkly for LaunchDarkly
  • security
    • hand off to something else? e.g. IdentityServer
    • possibly implement as a lambda-type callback?
  • ui
    • dashboard
      • list of toggles & states
      • alerts of toggles which havent changed in a while
      • alerts of toggles which havent been queried in a while
    • toggle editor / details
      • event log of changes etc
  • integrations
    • webhooks
    • plugins etc
  • statistics
    • push to statsd/etcd/etc?
    • or just roll our own for in-memory querying
    • both? inmemory for fast dashboards, publish for external interest
  • implementation
    • elixir hype? or Go perhaps? could then distribute an .exe. hhmm.
    • eventsourced filestorage perhaps

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages