facade
Providing common fields for analytics integrations. Wraps the Segment.io api for use on the server or client.
Facade
.proxy(field)
Proxies a field which is stored in the object.
track.proxy('traits')
track.proxy('traits.email')
As an added bonus, it will even pull out top level proxies that are attached to the facade
var track = new Track({ context : { setting : 'x' }});
track.proxy('options.setting');
var identify = new Identify({ traits : { address : { state : 'CA' }}});
track.proxy('address.state');
track.proxy('traits.address.state');
Since developers might be working in many languages, with different conventions for things like snake_case vs camelCase, .proxy will take care of that for you!
facade = new Facade({ SOME : { reallyGreat : { other_field : 'x' }}});
facade.proxy('some.reallyGreat.otherField');
.field(field)
Returns just the top level field of an object. You should generally be able to use .proxy() instead.
track.field('event')
track.field('userId')
.json()
Returns the full json of whatever was passed into the facade
(new Facade({ x : 'y'; })).json()
.options([integration])
Returns the options passed in to the facade. If you pass in an integration name, it will return the options only for that integration. If the integration isn't enabled, you won't get anything back for it
facade = new Facade({ options : { 'Segment.io' : { good : true }}});
facade.options();
facade.options('Segment.io')
facade.options('Customer.io')
facade.options('Salesforce')
.enabled(integration)
Returns whether the integration name is enabled:
facade = new Facade();
facade.enabled('Salesforce');
facade.enabled('Customer.io');
.channel()
Returns the channel for where the call came from, client
or server
If your integration uses browser javascript, you'll want to check all incoming facade messages to see whether to use them.
facade.channel();
.timestamp()
Returns the timestamp when the call was made
facade.timestamp();
.userAgent()
Returns the user agent for the call if passed into the options.userAgent
field.
The user agent will be parsed by component/user-agent-parser and will store the full user agent under facade.userAgent().full
;
facade.userAgent();
.active()
Decides whether a call should be used to update the user who the call is for. Defaults to true
, taken from options.active
.
Any active call will update the user's last seen fields.
Track
.event()
return the tracked event
.userId()
return the user's id for the track call
.sessionId()
return the session id for the track call
.properties()
return the event properties
.referrer()
return the referrer as taken from the properties
.username()
return the username from traits or the userid
.email()
return the email from the traits
.identify()
convert the track call into an identify call to feed its traits into services which use super properties
var identify = track.identify();
identify.firstName();
Identify
.userId()
return the user's id
.sessionId()
return the session id
.traits()
return the passed in traits
.email()
return the email from traits and user id
.username()
return the username from the traits and user id
Alias
.from()
returns the user id to alias from
.to()
returns the user id to alias to
License
(The MIT License)
Copyright (c) 2013 Segment.io <friends@segment.io>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.