vikunja/Featurecreep.md

15 KiB

Featurecreep

This is the place where I write down ideas to work on at some point. Sorry for some of them being in German, I'll tranlate them at some point.

Feature Ideas

  • Priorities
  • Repeating tasks
  • Get all tasks which are due between two given dates
  • Subtasks

Anderes

  • Refactor!!!! Delete everything not being used anymore, simplify.
  • Drone
  • Tests
  • Find a nme
  • Move packages to a better structure
  • Swagger UI
  • Fix CORS
  • Use echo.NewHTTPError instead of c.JSON(Message{})
  • Better error messages when the model which is sent to the server is wrong
  • Better error handling to show useful error messages and status codes
  • Viper for config instead of ini
  • Docs for installing
  • Tests for rights managemnt
  • Rights checks: * Create lists * Edit lists * Add tasks * Edit tasks
  • The -1 namespace should also be accessible seperately

Short Term

  • Cacher configurable
  • Should throw an error when an id < 1
  • /users should also return the rights
  • Extra endpoint /teams/members /list/users to update rights without needing to remove and re-add them
  • namespaces & listen update does not work, returns 500
  • Logging for all errors somewhere
  • Ne extra funktion für list exists machen, damit die nicht immer über GetListByID gehen, um sql-abfragen zu sparen
  • Rausfinden warum xorm teilweise beim einfügen IDs mit einfügen will -> Das schlägt dann wegen duplicate fehl
  • Bei den Structs "AfterLoad" raus, das verbraucht bei Gruppenabfragen zu viele SQL-Abfragen -> Die sollen einfach die entsprechenden Read()-Methoden verwenden (Krassestes bsp. ist GET /namespaces mit so ca 50 Abfragen)
  • General search endpoints
  • Validation der ankommenden structs, am besten mit https://github.com/go-validator/validator oder mit dem Ding von echo
  • Pagination
    • Sollte in der Config definierbar sein, wie viel pro Seite angezeigt werden soll, die CRUD-Methoden übergeben dann ein "gibt mir die Seite sowieso" an die CRUDable-Funktionenen, die müssen das dann Auswerten. Geht leider nicht anders, wenn man erst 2342352 Einträge hohlt und die dann nachträglich auf 200 begrenzt ist das ne massive Ressourcenverschwendung.
  • Testen, ob man über die Routen methode von echo irgendwie ein swagger spec generieren könnte -> Andere Swagger library
  • CalDAV
    • Basics
    • Reminders
    • Discovery, stichwort PROPFIND
  • Wir brauchen noch ne gute idee, wie man die listen kriegt, auf die man nur so Zugriff hat (ohne namespace)
    • Dazu am Besten nen pseudonamespace anlegen (id -1 oder so), der hat das dann alles
  • Testing mit locust: https://locust.io/
  • Endpoint to get all users who have access to a list - regardless of via team, user share or via namespace

Userstuff

  • Userstuff aufräumen -> Soweit es geht und Sinnvoll ist auf den neuen Handler umziehen -> Login/Register/Password-reset geht natürlich nicht -> Bleibt noch Profile abrufen und Einstellungen -> Macht also keinen Sinn das auf den neuen Handler umzuziehen
  • Email-Verifizierung beim Registrieren
  • Password Reset
  • New field in user model which holds a url of an avatar image - for now just Gravatar, later more
  • Settings
    • Password update
    • Email update
    • Ob man über email oder Benutzernamen gefunden werden darf

Bugfixes

  • Panic wenn mailer nicht erreichbar -> Als workaround mailer deaktivierbar machen, bzw keine mails verschicken
  • "unexpected EOF"
  • Beim Login & Password reset gibt die API zurück dass der Nutzer nicht existiert
  • Re-check rights checks to see if all information which is compared against is properly read from the db and not only based on user input
    • Lists
    • List users
    • List Teams
    • Labels
    • Tasks
    • Namespaces
    • Namespace users
    • Namespace teams
    • Teams
    • Team member handling
    • Also check ReadOne() for unnessecary database operations since the inital query is already done in CanRead()
  • Add a User.AfterLoad() which obfuscates the email address
  • Fix priority not updating to 0

Docs

  • Readme
    • Auch noch nen "link" zum Featurecreep
    • ToC
    • Logo
    • How to build -> Docs
    • How to dev -> Docs
    • License
    • Contributing
  • Redocs
  • Swaggerdocs verbessern
    • Descriptions in structs
    • Maxlength specify etc. (see swaggo docs)
  • Rights
  • API
  • Anleitung zum Makefile
  • How to build from source
  • Struktur erklären
  • Deploy in die docs
    • Docker
    • Native (systemd + nginx/apache)
  • Backups
  • Docs aufsetzen

Better caldav support

  • VTODO
  • Fix organizer prop
  • Depricate the events thing for now
  • PROPFIND/OPTIONS : caldav discovery
  • Create new tasks
  • Save uid from the client
  • Update tasks
  • Marking as done
  • Fix OPTIONS Requests to the rest of the api being broken
  • Parse all props defined in rfc5545
  • COMPLETED -> Need to actually save the time the task was completed
  • Whenever a task ist created/updated, update the updated prop on the list so the etag changes and clients get notified
  • Fix not all tasks being displayed (My guess: Something about that f*cking etag)
  • Delete tasks
  • Last modified
  • Content Size
  • Modify the caldav lib as proposed in the pr
  • Improve login performance, each request taking > 1.5 sec is just too much, maybe just use the default value for hash iterations in the login/register function
  • Only show priority when we have one
  • Show a proper calendar title
  • Fix home principal propfind stuff
  • Docs
  • Setting to disable caldav completely
  • Make it work with the app
  • Cleanup the whole mess I made with the handlers and storage providers etc -> Probably a good idea to create a seperate storage provider etc for lists and tasks
  • Tests
  • Check if only needed things are queried from the db when accessing dav (for ex. no need to get all tasks when we act

General features

  • Deps nach mod umziehen
  • Performance bei rechtchecks verbessern
    • User & Teamright sollte sich für n rechte in einer Funktion testen lassen
  • Colors for tasks
  • /info endpoint, in dem dann zb die limits und version etc steht
  • Bindata for templates
  • User struct should have a field for the avatar url (-> gravatar md5 calculated by the backend)
  • Middleware to have configurable rate-limiting per user
  • Endpoint to get all possible rights with description and code
  • Reminders via mail
  • Be able to "really" delete the account -> delete all lists and move ownership for others
  • Deprecate /namespaces/{id}/lists in favour of namespace.ReadOne() <-- should also return the lists
  • Colors for lists and namespaces -> Up to the frontend to implement these
  • Create tasks from a text/markdown file (maybe frontend only)
  • All ReadAll methods should return the number of items per page, the number of items on this page, the total pages and the items -> Check if there's a way to do that efficently. Maybe only implementing it in the web handler.
  • Move lists between namespaces -> Extra endpoint

Infra

  • Debian package should have a service file
  • Downloads should be served via nginx (with theme?), minio should only be used for pushing artifacts.

Refactor

  • ListTaskRights, sollte überall gleich funktionieren, gibt ja mittlerweile auch eine Methode um liste von nem Task aus zu kriegen oder so
  • Re-check all {List|Namespace}{User|Team} if really all parameters need to be exposed via json or are overwritten via param anyway.
  • Things like list/task order should use queries and not url params
  • Fix lint errors
  • Add settings for max open/idle connections and max connection lifetime
  • Reminders should use an extra table so we can make reverse lookups aka "give me all tasks with reminders in this period" which we'll need for things like email reminders notifications
  • When giving a user access to a list/namespace, they should be reffered to by uuid, not numeric id
  • Adding users to a team should also use uuid
  • Check if the team/user really exist before updating them on lists/namespaces
  • Refactor config handling: Custom type "key" or so which holds the viper const and then mixins on that type to get the values from viper
  • Less files, but with some kind of logic
  • Have extra functions for logging to call so it is possible to call log.Info instead of log.Log.Info
  • GetUserByID and the likes should return pointers

Linters

  • goconst
  • Staticcheck
  • gocyclo-check
  • gosec-check -> waiting for mod
  • goconst-check
  • golangci -> docker in drone, will probably make all other linters obsolete

Tasks

  • Start/Enddatum für Tasks
  • Timeline/Calendar view -> Dazu tasks die in einem Bestimmten Bereich due sind, macht dann das Frontend
  • Tasks innerhalb eines definierbarem Bereich, sollte aber trotzdem der server machen, so à la "Gib mir alles für diesen Monat"
  • Bulk-edit -> Transactions
  • Assignees
    • Check if something changed at all before running everything
    • Don't use list.ReadOne(), gets too much unnessecary shit
    • Wegen Performance auf eigene endpoints umziehen, wie labels
    • "One endpoint to rule them all" -> Array-addable
  • Labels
    • Check if something changed at all before running everything
    • Editable via task edit, like assignees
    • "One endpoint to rule them all" -> Array-addable
  • Description should be longtext
  • Attachments
  • Related tasks -> settable with a "kind" of relation like blocked, or just related or so
  • Percent done - For now just a float, may later depend on how many sub tasks are done or so
  • Move tasks between lists
  • "Status" field for things like "New", "In Progress", "Done", etc (customizable statuses)

Events

  • Whenever something happens an event should be registered in the db, sse, mail, etc. -> Abstract with implementations for various things
  • Activity Feed, so à la "der und der hat das und das gemacht etc"
    • Per list
    • For the current user
  • Websockets SSE https://github.com/kljensen/golang-html5-sse-example
    • User authenticates (with jwt)
    • When updating/creating/etc an event struct is sent to the broker
    • The broker has a list of subscribed users
    • It then checks who is allowed to the see the event it recieved and sends it
    • Being able to define filters for notifications or turn them silent completely -> Probably frontend only

More server settings

  • Caldav disable/enable
  • Assignees disable/enable
  • Max number of assignees
  • List/Namespace limits
  • Attachements disable/enable
  • Attachements size
  • Templates disable/enable
  • Stats disable/enable
  • Activity notifications disable/enable
  • IMAP integration disable/enable
  • Reminders via mail disable/enable

Later

  • Public lists
  • Sorting lists by members, tasks, teams, last modified, etc (all possible fields)
  • Backgrounds for lists -> needs uploading and storing and so on
  • Plugins
  • Rename Namespaces to collections (or spaces?)
  • Collections n-n (one list can be in multiple collections)?
  • Rename lists to projects
  • "Performance-Statistik" -> Wie viele Tasks man in bestimmten Zeiträumen so geschafft hat etc
  • List stats to see how many tasks are done, how many are there in total, how many people have acces to a list etc
  • IMAP-Integration -> Man schickt eine email an Vikunja und es macht daraus dann nen task -> Achtung missbrauchsmöglichkeiten
  • In und Out webhooks, mit Templates vom Payload
  • Some kind of milestones for tasks
  • Get Weekly/Daily summary of the tasks to come per mail
  • Per-User limits of lists/namespaces
  • Admin-Interface to do stuff like settings and user management
    • Enable/Disable users
    • Manage user groups -> Creating new roles and defining what they're allowed to do etc.
    • Manage custom fields task templates
    • Enable/disable allowing user adding to lists/namespaces for specific lists or namespaces
    • Admins should be able to see and mange all the boards
    • Admin interface also usable via cli
  • dump and restore cli commands
  • Better rights system with user roles, to be able to manage fine-graded permissions on fields -> Giving read/write right for each field/action
    • Roles which enable or disable chaning certain fields of a task -> includes custm fields
    • Pre-defined roles to make it easier to set up (creatable via admin)
  • Limit registration to users with a defined email domain
  • Close the instance, either no registration or only one with defined email
  • 2fa
  • Custom fields for tasks: Templates at List > Namespace > Global level, overwriting each other
  • Task-Templates in namespaces and lists (-> Multiple which are selectable)
  • "Favourite lists" -> A user can favourize boards which will then show up in a pseudonamespace
  • Internal lists -> Only registered users can see the list
  • Rights management for both public and internal lists
  • Add new users via to a list which don't have an account yet, they'd get a link to sign up for vikunja.
    • Respect registration email domain limits
  • Export all data from Vikunja to json (related: dump cli command)
    • Per user and for the whole instance
  • Watch a (n internal) list -> Will get notification for everything
  • Archive a task instead of deleting
  • Task dependencies
  • Time tracking (possible plugin)
  • IFTTT
  • Task automation: Being able to create own flows "if this event is fired, do this" and so on
  • More sharing features (all of these with the already existing permissions)
    • Invite users per mail
    • Share a link with/without password
  • Comments on tasks
  • @mention users in tasks or comments to get them notified
  • Summary of tasks to do in a configurable interval (every day/week or so)
  • Disable/enable task fields in a list
    • With inheritence from namespaces
  • Custom statuses for tasks, configurable in the list settings
    • With inheritence from namespaces
  • Better filters
    • by lables
    • Due dates
    • Start/End dates
    • Assignees
    • Priorities
    • Status
  • "Smart Lists", filtered lists, saved in some kind of pseudonamespace
    • Global and per list
  • Automate everything "If this event happens, do this"
  • Importer (maybe frontend only)
    • Trello
    • Wunderlist
    • Zenkit
    • Asana
    • Microsoft Todo
    • Nozbe
    • Lanes
    • Nirvana
    • Any.do
    • Good ol' Caldav (Tasks)
    • ClickUp
  • More auth providers
    • LDAP/AD
    • Kerberos
    • SAML (what?)
    • smtp
    • OpenID