xlabs/followbundle
关注管理包
1.0.21
2021-07-08 10:01 UTC
Requires
- php: >=5.6
- predis/predis: ^1.1
- symfony/symfony: >=3.4
- xlabs/rabbitmqbundle: ^1.0
Requires (Dev)
- symfony/asset: ~2.7|~3.0.0
- symfony/console: ~2.8|~3.0.0
- symfony/expression-language: ~2.4|~3.0.0
- symfony/finder: ~2.3|~3.0.0
- symfony/form: ^2.8.23
- symfony/http-kernel: ~2.8|~3.0.0
- symfony/polyfill-intl-icu: ~1.0
- symfony/routing: ~2.2|~3.0.0
- symfony/security: ~2.6|~3.0.0
- symfony/security-acl: ~2.6|~3.0.0
- symfony/stopwatch: ~2.2|~3.0.0
- symfony/templating: ~2.1|~3.0.0
- symfony/translation: ~2.7|~3.0.0
- symfony/var-dumper: ~2.7.16|~2.8.9|~3.0.9
- symfony/yaml: ^2.0.5|~3.0.0
Suggests
- symfony/asset: For using the AssetExtension
- symfony/expression-language: For using the ExpressionExtension
- symfony/finder
- symfony/form: For using the FormExtension
- symfony/http-kernel: For using the HttpKernelExtension
- symfony/routing: For using the RoutingExtension
- symfony/security: For using the SecurityExtension
- symfony/stopwatch: For using the StopwatchExtension
- symfony/templating: For using the TwigEngine
- symfony/translation: For using the TranslationExtension
- symfony/var-dumper: For using the DumpExtension
- symfony/yaml: For using the YamlExtension
README
一个类似redis的引擎。
安装
通过composer安装
php -d memory_limit=-1 composer.phar require xlabs/followbundle
此包依赖于"xlabs/rabbitmqbundle"。请确保也设置它。
在你的AppKernel中
public function registerbundles()
{
return [
...
...
new XLabs\FollowBundle\XLabsFollowBundle(),
];
}
php bin/console doctrine:schema:update --force
路由
追加到主路由文件
# app/config/routing.yml
xlabs_follow_engine:
resource: "@XLabsFollowBundle/Resources/config/routing.yml"
#prefix: /
配置示例
以下显示默认值
# app/config/config.yml
x_labs_follow:
redis_settings:
host: 192.168.5.23
port: 6379
database_id: 7
_key_namespace: 'xlabs:follow'
backup: # for mysql backup/restore
<alias>: <entity_FQCN>
使用方法
将此追加到模板中的任何位置
{% include 'XLabsFollowBundle:Follow:loader.html.twig' %}
要查看示例模板,请检查
XLabsFollowBundle:Follow:example.html.twig
MySQL备份
确保运行以下命令。这是将所有操作保存到项目数据库中的消费者。
php bin/console xlabs:follow:mysql_backup --no-debug
如果Redis丢失所有数据,你可以通过执行以下命令来恢复它
php bin/console xlabs:follow:restore --no-debug
如果你已经在redis中有数据,并且想要创建它的mysql备份,以下是一个一次性命令示例,你应该将其复制到项目中并相应地修改
php bin/console xlabs:follow:initial_backup --no-debug
事件监听器
如果你想在前端发生关注事件时执行某些操作,你可以创建一个事件监听器,如下所示
# YourBundle/Resources/config/services.yml
...
xlabs_follow.event_listener:
class: YourBundle\EventListeners\YourListener.php
tags:
- { name: kernel.event_listener, event: xlabs_follow.event, method: yourListenerMethod }
use Symfony\Component\EventDispatcher\Event;
class YourListener extends Event
{
public function yourListenerMethod(Event $event)
{
dump($event->getFollow()); die;
}
}
$event变量包含有关已发生的关注操作的所有信息。
调整
默认情况下,服务使用会话中的用户。如果你想在执行关注操作的用户上使用服务
$user = $em->getRepository('YourBundle:YourUserEntity')->find(<ID>);
$follow_engine = $container->get('xlabs_follow_engine');
$follow_engine->setUser($user);
$follow_engine->...