Need to figure out the best way to optimize displaying activity from multiple streams.
First you'll configure the target, target_id, object, and object_id with each being optional (e.g. target = user and target_id = [user_id]). This would result in both of those filters being added to the database query AND this will always be used for storage. Next have a tab with the following parameters.
Include All Activity: Yes/No
If the above is set to Yes then HIDE all of the following INCLUDE parameters for ALL usage. It will still be possible to exclude. This covers our Recent Activity page requirements.
Include Streams: include all activity with the selected stream ids (should this be comma list so we can use substitutions?)
Exclude Stream: exclude all activity with the selected stream ids
Include Users: include all activity created by the list of user ids
Exclude Users: exclude all activity created by the list of user ids
Include Users Connections: include all activity created by the list of user ids connections
Exclude Users Connections: exclude all activity created by the list of user ids connections
Include Users Following: include all activity the list of user ids is following
Exclude Users Following: exclude all activity the list of user ids is following
Include Verbs: include all activity created with the supplied list of verbs
Exclude Verbs: exclude all activity created with the supplied list of verbs
Include Activity: include all activity matching the supplied target, target_id, object, and object_id
Exclude Activity: exclude all activity matching the supplied target, target_id, object, and object_id
Maybe these should just be Filters with the first filter representing All? This would allow the entire tab to be named Filters and be used to represent what's displayed outside of the streams initial target, target_id, object, and object_id. All of these parameters need to support substitutions. The additional filters (not All) should be a cbrepeat usage so you can add as many filters as you like.
As for how to pass data to a stream we'll just goahead and include it with the stream output (e.g. data-stream="{id:ID_HERE,target:\"user\",target_id:\"42\"}"). This will be cleaned, loaded in, and access checked before anything happens anyway so it's perfectly fine to just do it this way. So for example CB GroupJive would use the following usage.
target: group
target_id: [target_id]
This would tell us the stream expects a target id to be set. If one isn't set fail the stream loading. When the stream is rendered CB GroupJive would give the group id to the stream to be used for [target_id]. When dealing with form POSTS, paging, etc.. we'll just pass the same target_id along with that data. When the stream loads GJ will verify the user has access to the group so tampering with this data won't cause any issues. Another option is to, and this is likely preferred method, use 2-way encryption using site key. Encrypt the JSON (using openssl_encrypt or something similar), set it in URLs as the stream id (e.g. &stream=ENCYRPTED_JSON), then decrypt in CB Activity. That'd be the safest and easiest option. Note if a target, object, etc.. is NOT set AFTER loading a stream then don't bother with the encryption and just use the actual stream id. This will keep most common streams faster since they won't need to bother with encryption, but again we probably don't even need to bother with doing this.
As for sharing activity via URL all we need is the id of the activity entry. The stream the activity belongs to will be stored. So we'll rebuild from that easily. Originally it was planned to support generating public share URLs, but with this method we don't need to.
The above filtering should probably still use Asset, but in code we explode it to target, target_id, etc.. otherwise the user could be responsible for a lot of parameters and could become very confusing.