shaygan / affiliate-bundle
A simple Symfony Affiliate Bundle.
Installs: 258
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 1
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.0|^8.0
- doctrine/orm: ^2.5
- knplabs/knp-paginator-bundle: *
- symfony/framework-bundle: >=4.4
- symfony/templating: *
- symfony/twig-bundle: *
- twig/twig: *
Requires (Dev)
- friendsofphp/php-cs-fixer: ^1.11
- phpunit/phpunit: ~4.8|~5.0
- symfony/phpunit-bridge: ^4.1.12
README
A simple Symfony Affiliate Bundle.
This FOSUserBundle compatible Bundle tracks referrals with query string
parameter and detect referred registrations via cookie. You can easil ask
the bundle for commission amount (if there is any referrer) and apply the amount
to referrer's user account.
Your Order Object needs to implements \Shaygan\AffiliateBundle\Model\OrderInterface.
Install
Via Composer
$ composer require shaygan/affiliate-bundle
Edit your app/AppKernel.php to register the bundle in the registerBundles() method as above:
class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... // register the bundle here new \Shaygan\AffiliateBundle\ShayganAffiliateBundle() ); } }
Configure the bundle
This bundle was designed to just work out of the box. The only thing you have to configure in order to get this bundle up and running is your commission type amount and count.
# app/config/config.yml shaygan_affiliate: programs: membership_upgrade: type: fixed-amount first_commission_amount: 3 commission_amount: 1 max_count: 10 purchase: type: percentage first_commission_percent: 15 commission_percent: 10 max_count: 10
By default it look for ?ref=REFERRER_ID in URLs the ref is configurable
Usage
ShayganAffiliateBundel tracks FOSUserBundle registrations automatically and after every purchase you just need to ask the bundle for the commission payment if the referrer eligible for commission the bundle with return a commission Entity that contain the amount you have to pay to the referrer, othervise returns null.
// ... // MyOrder SHOULD implements \Shaygan\AffiliateBundle\Model\OrderInterface $order = new \AppBundle\Entity\MyOrder(); $order->setOwnerUser($this->getUser()); $em = $this->getDoctrine()->getManager(); $em->persist($order); $em->flush(); $affiliate = $this->get("shaygan_affiliate"); $commission = $affiliate->getPurchaseCommission($order); if(null !== $commission){ $commissionAmount = $commission->getCommissionAmount(); $referrer = $commission->getReferrer(); $referrerUserId = $referrer->getId(); // You can apply the commission amount to the accont of referrer User here // ... } //...
Testing
Not implemented yet
License
The MIT License (MIT). Please see License File for more information.