Live chat bundle
A redis driven like engine.
Install through composer:
php -d memory_limit=-1 composer.phar require xlabs/chatbundle
This bundle depends on "xlabs/rabbitmqbundle". Make sure to set it up too.
In your AppKernel
public function registerbundles()
{
return [
...
...
new XLabs\ChatBundle\XLabsChatBundle(),
];
}
Append to main routing file:
# app/config/routing.yml
x_labs_chat:
resource: .
type: xlabs_chat_routing
Default values are shown below:
# app/config/config.yml
x_labs_rabbit_mq:
...
x_labs_chat:
user_entity: YourBundle\Entity\YourFOSUserExtendedEntity
user_entity_mappings:
id: <your_user_entity_id_fieldname>
username: <your_user_entity_usernam_fieldname>
avatar: <your_user_entity_avatar_fieldname>
url: /chat
nodejs_settings:
host: your.host.com
port: 3026
schema: https
ssl_key: /etc/nginx/.../your.host.com.key
ssl_cert: /etc/nginx/.../your.host.com.crt
ssl_bundle: /etc/nginx/.../your.host.com.(bundle | crt)
redis_settings:
host: 192.168.5.23
port: 6379
database_id: 20
_key_namespace: 'your:namespace:chat'
rabbitmq_settings:
queue_prefix: 'your_prefix' (queue will be named by this prefix followed by "_chat")
uploads:
folder: your/upload/folder/inside/web/folder
allowed_extensions: ['jpg', 'jpeg']
max_file_size: 1048576 (in bytes)
settings:
message_ttl: <expiration_period_in_hours> | false
images_prefix: 'https://cdn.static.stiffia.com/' (for avatar and uploaded images)
report_to: ['xavi.mateos@manicamedia.com']
Also, if you have 'resolve_target_entities' set in doctrine´s orm config section, you will need to add the following:
# app/config/config.yml
doctrine:
...
orm:
...
resolve_target_entities:
...
XLabs\ChatBundle\Model\XLabsChatUserInterface: YourBundle\Entity\YourFOSUserExtendedEntity
Make sure you update all assets:
php app/console assets:install --symlink
Run command to create NodeJS server file:
php app/console xlabs_chat:create:server
Install NodeJS dependencies under "web/chat/":
npm install
There´s a service included in the bundle which will return user_ids based on some cryteria. Have a look at 'xlabs_chat_user_manager' service and its method 'searchUsers', for instance, if you want to list the current active chat users.
In order for the chat to know about online/offline users, make sure to create login/logout listeners, and add the following lines:
namespace YourBundle\LoginEventListener;
use XLabs\ChatBundle\Event\XLabsChatUserOnline;
class MyLoginListener extends Event
{
public function yourCustomMethod(Event $event)
{
...
$event = new XLabsChatUserOnline(array(
'user_id' => $user->getId()
));
$this->container->get('event_dispatcher')->dispatch(XLabsChatUserOnline::NAME, $event);
}
}
namespace YourBundle\LogoutEventListener;
use XLabs\ChatBundle\Event\XLabsChatUserOffline;
class MyLogoutListener extends Event
{
public function yourCustomMethod(Event $event)
{
...
$event = new XLabsChatUserOffline(array(
'user_id' => $user->getId()
));
$this->container->get('event_dispatcher')->dispatch(XLabsChatUserOffline::NAME, $event);
}
}
Launch the NodeJS server:
node web/chat/server.js
Launch RabbitMQ consumer that stores messages in DB:
php app/console xlabs_chat:message:store
Add the following command in your crontab in order to delete expired messages:
0 1 * * * php app/console xlabs_chat:messages:expire
You can add the following right before the </body> tag of you parent template if you want to have a small new message notifier: {{ render(controller('XLabsChatBundle:Chat:loader')) }}
Make sure that doctrine has the following config setting:
doctrine:
dbal:
...
charset: UTF8MB4
The node js connection is made through a nginx reverse proxy. Make sure to set a nginx vhost:
server {
listen 443 ssl;
server_name <x_labs_chat.nodejs_settings.host>;
## SSL settings
ssl on;
ssl_certificate <x_labs_chat.nodejs_settings.ssl_cert>;
ssl_certificate_key <x_labs_chat.nodejs_settings.ssl_key>;
## SSL caching/optimization
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers RC4:HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
keepalive_timeout 60;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
location / {
#proxy_set_header 'Access-Control-Allow-Origin' '*';
#proxy_set_header X-Real-IP $remote_addr;
#proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
#proxy_set_header Host $http_host;
#proxy_set_header X-NginX-Proxy true;
#proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_pass https://<your_internal_nodejs_server_ip>:<x_labs_chat.nodejs_settings.port>;
}
}