ash-powell/apanalytics

A MongoDB Analytics Tracking and Parsing Package

dev-master 2024-03-28 09:53 UTC

This package is auto-updated.

Last update: 2024-03-28 09:53:13 UTC


README

Build Status styleci Scrutinizer Code Quality

Packagist Packagist Packagist

Simple Logging and Viewing for Analytics using MongoDB - Very rough first draft

Installation

Install via composer

composer require ash-powell/apanalytics

Register Service Provider

Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.

Add service provider to config/app.php in providers section

AshPowell\APAnalytics\APAnalyticsServiceProvider::class,

Register Facade

Register package facade in config/app.php in aliases section

AshPowell\APAnalytics\Facades\APAnalytics::class,

Publish Configuration File

php artisan vendor:publish --provider="AshPowell\APAnalytics\APAnalyticsServiceProvider" --tag="config"

Publish VueJS Analytic Chart Thing... Requires Vue-ApexCharts

php artisan vendor:publish --provider="AshPowell\APAnalytics\APAnalyticsServiceProvider" --tag="views"

Usage

Extend Analytic Models our Model instead of Elequent

This will make sure the correct db connection and collection are used

use AshPowell\APAnalytics\AnalyticModel as Model;

class ViewAnalytic extends Model;

To Log events simply use the built in helper as follows:

trackEvent('collection', $items, $userId = null, $params = []),
  • Collection will get plauralised
  • Items can be models, collections, or custom (see config for model formatting)
  • UserId is who performed the action, nullable, default is logged user
  • Params is an array of extra config, nullable also

Security

If you discover any security related issues, please email ash-powell@hotmail.co.uk instead of using the issue tracker.

Credits

This package relies heavily on jenssegers/laravel-mongodb.