carrooi / contactable
Contactable module for Nette framework and Doctrine
Requires
- kdyby/doctrine: ~2.2
- kdyby/events: ~2.3
- nette/application: ~2.2
- nette/di: ~2.2
- nette/utils: ~2.2
Requires (Dev)
- nette/bootstrap: ~2.2
- nette/mail: ~2.2
- nette/safe-stream: ~2.2
- nette/tester: ~1.3.0
This package is auto-updated.
Last update: 2024-11-06 03:54:11 UTC
README
Contactable module for Nette framework and Doctrine.
Installation
$ composer require carrooi/contactable
$ composer update
Configuration
extensions: contactable: Carrooi\Contactable\DI\ContactableExtension contactable: contactItemClass: App\Model\Entities\ContactItem associations: App\Model\Entities\User: user
- contactItemClass: entity with associations between contact types and eg. user entity
- associations: list of contactable entities with field names which are manyToOne associations in
contactItemClass
Contactable entity
Entity which implements Carrooi\Contactable\Model\Entities\IContactableEntity
interface with these methods:
getId()
: returns identifiergetContacts()
: returns array ofCarrooi\Contactable\Model\Entities\IContactItem
entitiesaddContact()
: adds newCarrooi\Contactable\Model\Entities\IContactItem
entity to collectionremoveContact()
: removesCarrooi\Contactable\Model\Entities\IContactItem
entity from collection
Of course you don't need to implement all required methods on your own (except for getId()
method). Just use prepared trait Carrooi\Contactable\Model\Entities\TContactable
.
namespace App\Model\Entities; use Carrooi\Contactable\Model\Entities\IContactableEntity; use Carrooi\Contactable\Model\Entities\TContactable; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity * @author David Kudera */ class User implements IContactableEntity { use TContactable; // ... /** * @return int */ public function getId() { return $this->id; } }
Contact item entity
Entity which holds the actual value of contact, eg. actual email address of user. This entity must implement Carrooi\Contactable\Model\Entities\IContactItem
interface with these methods:
getId()
: returns identifiergetContactType()
returnsCarrooi\Contactable\Model\Entities\IContactType
entitysetContactType()
setsCarrooi\Contactable\Model\Entities\IContactType
entitygetValue()
: returns value of contactsetValue()
: sets value of contactvalidateValue()
validate value against pattern in contact type
Again, you can use prepared trait Carrooi\Contactable\Model\Entities\TContactItem
.
namespace App\Model\Entities; use Carrooi\Contactable\Model\Entities\IContactItem; use Carrooi\Contactable\Model\Entities\TContactItem; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity * @author David Kudera */ class ContactItem implements IContactItem { use TContactItem; /** * @ORM\Id * @ORM\Column(type="integer") * @var int */ private $id; /** * @ORM\ManyToOne(targetEntity="\App\Model\Entities\User") * @var \App\Model\Entities\User */ private $user; // ... some getters and setters for all fields }
As you can see, we've got user
field which corresponding with associations
setup in your configuration.
Contact types
You can create as many types as you want, eg. mails, facebook, phone numbers etc.
There is already prepared service for that: Carrooi\Contactable\Model\Facades\ContactTypesFacade
.
Create contact type:
$type = $types->create('mail', 'Email', [ 'pattern' => '[a-z]+@[a-z]+\.[a-z]{2,3}', // really naive mail regex 'url' => 'mail.org', ]);
arguments:
name
: required "system" nametitle
: required "public" namevalues
:- not required list of other values
pattern
: not required pattern for all contact values of this typeurl
: not required url to contact
Update contact type:
$types->update($type, [ 'name' => 'email', 'title' => 'Email address', 'pattern' => '.+', // no more naive, just stupid 'url' => 'mail.com', ]);
Remove contact type:
$types->remove($type);
Get all contact types:
foreach ($types->findAll() as $type) { // ... }
Get id => names pairs:
foreach ($types->findAllNames() as $id => $name) { // ... }
Find contact type by id:
$type = $types->findOneById($id);
Find contact type by name:
$type = $types->findOneByName($name);
Contact items facade
There is also service Carrooi\Contactable\Model\Facades\ContactItemsFacade
which can be used for adding contacts to contactable entities.
Add contact:
$item = $items->addContact($user, $type, 'lorem@ipsum.com');
Update contact:
$items->update($item, [ 'contactType' => $anotherType, 'value' => '999888777', ]);
Remove contact:
$items->remove($item);
Find by id:
$item = $items->findOneById($id);
Find all by entity:
foreach ($items->findAllByEntity($user) as $item) { // ... }
Changelog
- 1.0.0
- Initial version