stanislav-web / sonar
Sonar is the site visitors monitor. Build in Phalcon & MongoDb. Conducts monitoring of visitors, using the WebSockets connection. Great for sites built on REST technology. You can easily integrate this package to track detailed information about your visitors. Check the time on each page of the site
Requires
- php: >=5.5.0
- ext-memcache: *
- ext-mongo: *
- cboden/ratchet: dev-master
- donatj/phpuseragentparser: dev-master
- mobiledetect/mobiledetectlib: ^2.8
- willdurand/geocoder: ^3.1@dev
Requires (Dev)
- phpunit/phpunit: 4.*
Suggests
- stanislav-web/phalcon-searcher: Phalcon Database Searcher. This is the search service is designed to search multiple SQL tables. Convenient to use autocomplete, search documents, search the whole site.
- stanislav-web/phalcon-translate: Phalcon Translate Service. Simple way to translate your costom part of templates :-)
- stanislav-web/phalcon-ulogin: Phalcon ULogin. The authorization form uLogin through social networks
- stanislav-web/phalcon-uploader: Phalcon files uploader. Handling and downloading files for Phalcon projects. Allowed multiple files download, filters etc...
- stanislav-web/zf2-websocket-server-factory: ZF2 WebSockets. You can organize a chat, monitor live site visit, you can create real-time statistics and save it to DB (MySQL, Mongo..etc), you can organize the postal service in the likeness of Google. Yes, anything!
This package is not auto-updated.
Last update: 2024-11-09 18:43:33 UTC
README
Sonar is the site visitors monitor. Build in Phalcon & MongoDb. Conducts monitoring of visitors, using the WebSockets connection. Great for sites built on REST technology. You can easily integrate this package to track detailed information about your visitors. Check the time on each page of the site, determine device, geo location.
ChangeLog
[v1.2.2-alpha] 2015-09-27
- add debugger (show verbose in config)
- change cache session (to shared memory)
[v1.2-alpha] 2015-09-22
- configurable error log
- add cache session (memcache)
- silent error logger (warnings & noticies)
[v1.1-alpha] 2015-09-21
- implementing geo location detector
[v1.0-alpha] 2015-09-20
- the first version of package
- socket application named as "Sonar"
- implemented:
- tracking user's page position
- tracking user's page timing activity
- tracking user's device (phone, table, pc)
- tracking the time of each page
Compatible
- PSR-1, PSR-2, PSR-4 Standards
System requirements
- PHP 5.5 or higher
- Phalcon PHP extension 1.3.4 (support 2.x)
- PHP MongoDb client extension
- Beanstalk queue server
Installation
First update your dependencies through composer. Add to your composer.json:
"require": { "stanislav-web/sonar": "dev-master", }
Then run to update dependency and autoloader
php composer.phar update php composer.phar install
or just
php composer.phar require stanislav-web/sonar dev-master
(Do not forget to include the composer autoloader)
Configuration
This package have a variety of settings, both mandatory and optional.
- You can select them in the global app configuration file of your Phalcon project if you will be making their to global application config. See example:
// CLI task's configuration (required) 'cli' => [ // Sonar task configuration 'sonar' => [ 'debug' => true, // verbose mode 'errors' => true, // add errors to logfile 'cache' => true, // enable cache 'errorLog' => APP_PATH.'/../logs/sonar-error.log', // queue client configurations 'beanstalk' => [ 'host' => '127.0.0.1', 'port' => 11300, ], // webscoket server configuration 'socket' => [ 'host' => '127.0.0.1', 'port' => 9003, ], // db storage configuration (Mongo) 'storage' => [ 'host' => '127.0.0.1', 'port' => 27017, 'user' => 'root', 'password' => 'root', 'dbname' => 'sonar', ] ] ];
- Register task in your Phalcon CLI autoloader:
$loader = new \Phalcon\Loader(); $loader->registerDirs([ ... DOCUMENT_ROOT.'vendor/stanislav-web/sonar/src/Sonar/System/Tasks' ... ]);
- Running socket server using CLI from your project. And tracking user thought web interface (not yet implemented):
php public/cli.php sonar
(examples of client connect you can see here)
Unit Test
Also available in /phpunit directory. Run command to start
// Create mongo user mongo use sonar_test db.createUser({ user: "test_user", pwd: "test_password", roles: [ { role: "userAdmin", db: "sonar_test" } ] } )
phpunit --configuration phpunit.xml.dist --coverage-text or from your project root: phpunit --configuration ./vendor/stanislav-web/sonar/phpunit.xml.dist --coverage-text
In Future
- More examples
- Output working
Documents
##Issues