I am currently building a PHP/MySQL application that will implement activity streams across the whole application.
For example: user x did y to object z.
I am considering a very simple schema at the moment:
id, datetime, user_id, action_type, object_id.
user_idis the user who caused the event.action_typerepresents the type of action:Photo comment,post comment, etc.object_idis the object that he performed the action on.
I then thought that since activity streams are just essentially a log of all events, why not combine system logging with the activitity stream? In this case, however, the activity stream module will need to be able to log to different targets: databases for most events, SMS and email for critical events.
The other issue is that for system events such as databases being inaccessible or interal 500 errors, user_id would not be any actual user, but would be set to NULL or a special system user. Finally, errors in the application does not easily translate to the activity stream schema: 500 errors tend to provide us with a filename and line number where the problem orginated and not an object_id. It is also somewhat hard to log the "severity" of an event.
However on the upside, there is no ambiguity. For example, if I maintain an activity stream module and a logging module, where should I log events that are somewhat ambigious?
user x has logged inuser x has logged outuser x attempted to log in but the password was incorrect.
Is it advisable to combine activity streams and system logs?
Finally I would like to perform some sort of aggregation in the activity stream due to self generated spam:
user x commented on photo xuser x commented on photo y
That should be aggregated into: user x commented on photo x and y.
Would it be advisable to perform the aggregation at the database (sql queries) or in the client code (PHP)?