4 / 4
Aug 2020

Greetings,

is there an overview of which hooks exist and when they are pulled?
if i want to do something on every login, is ‘addaccount’ the only hook for this?
on what existing app i should orientate me, how hooks should be implemented?

Thomas

  • created

    Aug '20
  • last reply

    Aug '20
  • 3

    replies

  • 1.1k

    views

  • 2

    users

  • 2

    links

Hi Thomas,

addaccount is called when a new account is created, NOT at login.

session_creation is called during login and can reject the login by throwing an exception, but is does NOT yet have a complete user environment:

session_created is called once the user has successful logged in, before redirecting to the regular UI. It is also called for non-interactive logins like CalDAV/CardDAV!

The Framework has a couple of hooks, only called for interactive usage, but also if the user reloads with F5.

Can you be a bit more specific what you want to archive.

Ralf

well, ive build my app, where i retreive userdata, like phone, mobile, room number, and so on, from active directory and merge it with the exisiting contact in sql - for the current user.
But I dont want the user to click an app for a contactupdate, it should happen automatically.

the options i think of are:

  • synchronize the data on login for the user (sound more resonable?)
  • a cronjob and a loop over all users

Thomas