PHP hook, building hooks in your application
Introduction
One of the real challenges in building any type of framework, core or application is making it possible for the developers to hook into the business logic at specific points. Since PHP is not event based, nor it works with interrupts you have to come up an alternative.
The test case
Lets assume we are the main developers of a webshop framework. Programmers can use our framework to build complete webshops. Programmers can manage the orders that are placed on the webshop with the order class. The order class is part of our framework and we don’t want it to be extended by any programmer. However we don’t want to limit to programmers in their possibilities to hook into the orders process.
For example programmers should be able to send an email to the webshopowner if an order changes from one specific delivery status to another. This functionality is not part of the default behavior in our framework and is custom for the progammers webshop implementation.
Like said before, PHP doesn’t provide interrupts or real events so we need to come up with another way to implement hooks into our application. Lets take a look at the observer pattern.
Implementing the Observer pattern
The observer pattern is a design-pattern that describes a way for objects to be notified to specific state-changes in objects of the application.
For the first implementation we can use SPL. The SPL provides in two simple objects:
SPLSubject
- attach (new observer to attach)
- detach (existing observer to detach)
- notify (notify all observers)
SPLObserver
- update (Called from the subject (i.e. when it’s value has changed).
iOrderRef = $iOrderRef;
// Get order information from the database or an other resources
$this->iStatus = Order::STATUS_SHIPPED;
}
/**
* Attach an observer
*
* @param SplObserver $oObserver
* @return void
*/
public function attach(SplObserver $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (isset($this->aObservers[$sHash])) {
throw new Exception('Observer is already attached');
}
$this->aObservers[$sHash] = $oObserver;
}
/**
* Detach observer
*
* @param SplObserver $oObserver
* @return void
*/
public function detach(SplObserver $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (!isset($this->aObservers[$sHash])) {
throw new Exception('Observer not attached');
}
unset($this->aObservers[$sHash]);
}
/**
* Notify the attached observers
*
* @param string $sEvent, name of the event
* @param mixed $mData, optional data that is not directly available for the observers
* @return void
*/
public function notify()
{
foreach ($this->aObservers as $oObserver) {
try {
$oObserver->update($this);
} catch(Exception $e) {
}
}
}
/**
* Add an order
*
* @param array $aOrder
* @return void
*/
public function delete()
{
$this->notify();
}
/**
* Return the order reference number
*
* @return int
*/
public function getRef()
{
return $this->iOrderRef;
}
/**
* Return the current order status
*
* @return int
*/
public function getStatus()
{
return $this->iStatus;
}
/**
* Update the order status
*/
public function updateStatus($iStatus)
{
$this->notify();
// ...
$this->iStatus = $iStatus;
// ...
$this->notify();
}
}
/**
* Order status handler, observer that sends an email to secretary
* if the status of an order changes from shipped to delivered, so the
* secratary can make a phone call to our customer to ask for his opinion about the service
*
* @package Shop
*/
class OrderStatusHandler implements SplObserver
{
/**
* Previous orderstatus
* @var int
*/
protected $iPreviousOrderStatus;
/**
* Current orderstatus
* @var int
*/
protected $iCurrentOrderStatus;
/**
* Update, called by the observable object order
*
* @param Observable_Interface $oSubject
* @param string $sEvent
* @param mixed $mData
* @return void
*/
public function update(SplSubject $oSubject)
{
if(!$oSubject instanceof Order) {
return;
}
if(is_null($this->iPreviousOrderStatus)) {
$this->iPreviousOrderStatus = $oSubject->getStatus();
} else {
$this->iCurrentOrderStatus = $oSubject->getStatus();
if($this->iPreviousOrderStatus === Order::STATUS_SHIPPED && $this->iCurrentOrderStatus === Order::STATUS_DELIVERED) {
$sSubject = sprintf('Order number %d is shipped', $oSubject->getRef());
//mail('secratary@example.com', 'Order number %d is shipped', 'Text');
echo 'Mail sended to the secratary to help her remember to call our customer for a survey.';
}
}
}
}
$oOrder = new Order(26012011);
$oOrder->attach(new OrderStatusHandler());
$oOrder->updateStatus(Order::STATUS_DELIVERED);
$oOrder->delete();
?>
There are several problems with the implementation above. To most important disadvantage is that we have only one update method in our observer. In this update method we don’t know when and why we are getting notified, just that something happened. We should keep track of everything that happens in the subject. (Or use debug_backtrace… just joking, don’t even think about using it that way ever!).
Taking it a step further, events
Lets take a look at the next example, we will extend the Observer implementation with some an additional parameter for the eventname that occured.
Finishing up, optional data
iOrderRef = $iOrderRef;
// Get order information from the database or something else...
$this->iStatus = Order::STATUS_SHIPPED;
}
/**
* Attach an observer
*
* @param Observer_Interface $oObserver
* @return void
*/
public function attachObserver(Observer_Interface $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (isset($this->aObservers[$sHash])) {
throw new Exception('Observer is already attached');
}
$this->aObservers[$sHash] = $oObserver;
}
/**
* Detach observer
*
* @param Observer_Interface $oObserver
* @return void
*/
public function detachObserver(Observer_Interface $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (!isset($this->aObservers[$sHash])) {
throw new Exception('Observer not attached');
}
unset($this->aObservers[$sHash]);
}
/**
* Notify the attached observers
*
* @param string $sEvent, name of the event
* @param mixed $mData, optional data that is not directly available for the observers
* @return void
*/
public function notifyObserver($sEvent, $mData=null)
{
foreach ($this->aObservers as $oObserver) {
try {
$oObserver->update($this, $sEvent, $mData);
} catch(Exception $e) {
}
}
}
/**
* Add an order
*
* @param array $aOrder
* @return void
*/
public function add($aOrder = array())
{
$this->notifyObserver('onAdd');
}
/**
* Return the order reference number
*
* @return int
*/
public function getRef()
{
return $this->iOrderRef;
}
/**
* Return the current order status
*
* @return int
*/
public function getStatus()
{
return $this->iStatus;
}
/**
* Update the order status
*/
public function updateStatus($iStatus)
{
$this->notifyObserver('onBeforeUpdateStatus');
// ...
$this->iStatus = $iStatus;
// ...
$this->notifyObserver('onAfterUpdateStatus');
}
}
/**
* Order status handler, observer that sends an email to secretary
* if the status of an order changes from shipped to delivered, so the
* secratary can make a phone call to our customer to ask for his opinion about the service
*
* @package Shop
*/
class OrderStatusHandler implements Observer_Interface
{
protected $iPreviousOrderStatus;
protected $iCurrentOrderStatus;
/**
* Update, called by the observable object order
*
* @param Observable_Interface $oObservable
* @param string $sEvent
* @param mixed $mData
* @return void
*/
public function update(Observable_Interface $oObservable, $sEvent, $mData=null)
{
if(!$oObservable instanceof Order) {
return;
}
switch($sEvent) {
case 'onBeforeUpdateStatus':
$this->iPreviousOrderStatus = $oObservable->getStatus();
return;
case 'onAfterUpdateStatus':
$this->iCurrentOrderStatus = $oObservable->getStatus();
if($this->iPreviousOrderStatus === Order::STATUS_SHIPPED && $this->iCurrentOrderStatus === Order::STATUS_DELIVERED) {
$sSubject = sprintf('Order number %d is shipped', $oObservable->getRef());
//mail('secratary@example.com', 'Order number %d is shipped', 'Text');
echo 'Mail sended to the secratary to help her remember to call our customer for a survey.';
}
}
}
}
$oOrder = new Order(26012011);
$oOrder->attachObserver(new OrderStatusHandler());
$oOrder->updateStatus(Order::STATUS_DELIVERED);
$oOrder->add();
?>
Now we are able to take action on different events that occur.
Disadvantages
Although this implementation works quite well there are some drawbacks. One of those drawbacks is that we need to dispatch an event in our framework, if we don’t programmers can’t hook into our application. Triggering events everywhere give us a small performance penalty however I do think this way of working gives the programmers a nice way to hook into your application on those spots that you want them to hook in.
Just for the record
Notice that this code is just an example and can still use some improvements, for example: each observer is initialized even it will maybe never be notified, therefore I suggest to make use of lazy in some cases for loading the objects. There are other systems to hook into an application, more to follow!
1win авиатор [url=www.aviator-igra-1.ru/]1win авиатор[/url] .
aviator igra_ydOn
9 Sep 25 at 8:03 pm
Наркологическая клиника «НаркоМед Плюс» в Нижнем Новгороде оказывает экстренную помощь при снятии ломки. Наша команда высококвалифицированных специалистов готова круглосуточно выехать на дом или принять пациента в клинике, обеспечивая оперативное, безопасное и полностью конфиденциальное лечение. Мы разрабатываем индивидуальные программы терапии, учитывая историю зависимости и текущее состояние каждого пациента, что позволяет быстро стабилизировать его состояние и начать процесс полного выздоровления.
Детальнее – [url=https://snyatie-lomki-nnovgorod8.ru/]снятие ломки анонимно в нижнем новгороде[/url]
Pedrokep
9 Sep 25 at 8:04 pm
Big Bass Christmas Bash сравнение с другими онлайн слотами
JamesSog
9 Sep 25 at 8:07 pm
авиатор игра 1 вин [url=aviator-igra-2.ru]aviator-igra-2.ru[/url] .
aviator igra_ruol
9 Sep 25 at 8:09 pm
авиатор букмекерская контора [url=https://www.aviator-igra-1.ru]авиатор букмекерская контора[/url] .
aviator igra_dlOn
9 Sep 25 at 8:09 pm
Hello, I enjoy reading all of your article.
I wanted to write a little comment to support you.
AxiWert
9 Sep 25 at 8:09 pm
Заказать диплом на заказ в Москве вы можете используя официальный сайт компании. [url=http://galantclub.od.ua/member.php?u=15983/]galantclub.od.ua/member.php?u=15983[/url]
Sazrnci
9 Sep 25 at 8:10 pm
Ваш дом – ваши правила:
выбирайте, как быстро
хотите заехать
Вы сами решаете, на каком этапе завершить строительство. Дом можно получить в базовой комплектации, подготовленным к чистовой отделке или укомплектованным к заселению
Фиксированные сроки строительства и стоимость по договору для любого варианта готовности.
[url=https://ms-stroy.ru/stroitelstvo_domov_iz_keramiki/]дом из теплой керамики[/url]
Теплый контур
Включает в себя:
Подготовительные работы: выбор или разработка проекта дома
Устройство фундамента с устройством закладных под коммуникации
Устройство несущих стен, внешних и внутренних
Устройство перекрытий
Монтаж внутренних перегородок
Устройство монолитной железобетонной лестницы
Устройство утепленной кровли
Изготовление и монтаж окон
Рассчитать стоимость >
White box
Включает в себя «теплый контур», а также:
Работы по отделке фасада
Монтаж водосточной системы
Подшивка карнизных свесов
Внутренняя штукатурка стен и откосов
Монтаж системы отопления и водоснабжения
Монтаж черновой электрики со щитом и заземлением
Устройство черновой стяжки пола
Рассчитать стоимость > [url=https://ms-stroy.ru/proekty_domov/]готовые проекты домов и коттеджей[/url]
Под ключ
Включает в себя «вайтбокс», а также:
Подготовка стен к финишному покрытию
Покраска оконных откосов и монтаж подоконников
Поклейка обоев, покраска стен, монтаж плитки
Монтаж напольных покрытий (плитка, ламинат и пр.)
Монтаж потолков и приборов освещения
Монтаж межкомнатных дверей
Монтаж чистовой сантехники, розеток и выключателей
Меблировка помещений и установка бытовой техники (Набор опций и материалов подбирается индивидуально)
Рассчитать стоимость >
https://ms-stroy.ru/cokolnyj_etazh_chastnogo_doma/
ипотека на строительство дома в московской области
Jamespauts
9 Sep 25 at 8:10 pm
https://hoo.be/ocdyhogefa
AllenGop
9 Sep 25 at 8:12 pm
WOW just what I was looking for. Came here by searching for rose
toy
rose toy
9 Sep 25 at 8:15 pm
Алкоголь стал проблемой? В клинике «Alco.Rehab» в Москве знают, как вернуть вас к нормальной жизни.
Ознакомиться с деталями – [url=https://vyvod-iz-zapoya-moskva13.ru/]анонимный вывод из запоя в москве[/url]
RaymondSob
9 Sep 25 at 8:20 pm
Ваш дом – ваши правила:
выбирайте, как быстро
хотите заехать
Вы сами решаете, на каком этапе завершить строительство. Дом можно получить в базовой комплектации, подготовленным к чистовой отделке или укомплектованным к заселению
Фиксированные сроки строительства и стоимость по договору для любого варианта готовности.
[url=https://ms-stroy.ru/ipoteka/]сельская ипотека онлайн[/url]
Теплый контур
Включает в себя:
Подготовительные работы: выбор или разработка проекта дома
Устройство фундамента с устройством закладных под коммуникации
Устройство несущих стен, внешних и внутренних
Устройство перекрытий
Монтаж внутренних перегородок
Устройство монолитной железобетонной лестницы
Устройство утепленной кровли
Изготовление и монтаж окон
Рассчитать стоимость >
White box
Включает в себя «теплый контур», а также:
Работы по отделке фасада
Монтаж водосточной системы
Подшивка карнизных свесов
Внутренняя штукатурка стен и откосов
Монтаж системы отопления и водоснабжения
Монтаж черновой электрики со щитом и заземлением
Устройство черновой стяжки пола
Рассчитать стоимость > [url=https://ms-stroy.ru/stroitelstvo_monolitnyh_domov/]частный монолитный дом[/url]
Под ключ
Включает в себя «вайтбокс», а также:
Подготовка стен к финишному покрытию
Покраска оконных откосов и монтаж подоконников
Поклейка обоев, покраска стен, монтаж плитки
Монтаж напольных покрытий (плитка, ламинат и пр.)
Монтаж потолков и приборов освещения
Монтаж межкомнатных дверей
Монтаж чистовой сантехники, розеток и выключателей
Меблировка помещений и установка бытовой техники (Набор опций и материалов подбирается индивидуально)
Рассчитать стоимость >
https://ms-stroy.ru/
проекты домов готовые
Jamespauts
9 Sep 25 at 8:22 pm
BluePillUK https://bluepilluk.com/# generic sildenafil UK pharmacy
StuartDop
9 Sep 25 at 8:23 pm
Нужна, где оформить медицинскую книжку за час в Москве, легально и без очередей? На сайте [url=https://medik-moscov.ru]https://medik-moscov.ru[/url] можно получить санитарную книжку для работы в детских учреждениях, общепите, гостиницах, медицинских центрах, торговле и многих других сферах. Тариф: новая книжка — от 1390 ?, продление — от 780 ?. Всё в течение часа, с законной защитой и в шаговой доступности. Узнайте подробнее — медкнижка за час, оформление срочно, медицинская книжка.
Spravkiavy
9 Sep 25 at 8:25 pm
Great work! That is the type of info that are supposed to be shared across
the web. Disgrace on Google for no longer positioning this submit higher!
Come on over and seek advice from my web site . Thank you =)
free
9 Sep 25 at 8:28 pm
dark markets nexus darknet link nexus darknet url [url=https://darknetmarketstore.com/ ]darknet market lists [/url]
Jamespem
9 Sep 25 at 8:31 pm
Мы можем предложить документы любых учебных заведений, которые расположены в любом регионе России. Приобрести диплом ВУЗа:
[url=http://friendtalk.mn.co/posts/87270987/]купить аттестат 11 классов 2015[/url]
Diplomi_tlPn
9 Sep 25 at 8:32 pm
Big Burger Load it up with Extra Cheese slot rating
JohnnieRag
9 Sep 25 at 8:33 pm
MediTrustUK [url=http://meditrustuk.com/#]ivermectin without prescription UK[/url] ivermectin cheap price online UK
Albertmoone
9 Sep 25 at 8:33 pm
игра авиатор ставки [url=aviator-igra-1.ru]игра авиатор ставки[/url] .
aviator igra_bwOn
9 Sep 25 at 8:36 pm
https://www.brownbook.net/business/54234734/казахстан-марихуана-купить/
AllenGop
9 Sep 25 at 8:36 pm
Fastidious respond in return of this query with genuine arguments
and telling everything about that.
jelas777
9 Sep 25 at 8:38 pm
You actually make it appear really easy together
with your presentation but I find this topic to be
actually something that I think I might never understand.
It seems too complicated and extremely broad for me.
I’m having a look ahead to your next put up, I will try to get the cling of it!
NexioWert
9 Sep 25 at 8:39 pm
авиатор онлайн игра [url=https://www.aviator-igra-1.ru]авиатор онлайн игра[/url] .
aviator igra_glOn
9 Sep 25 at 8:41 pm
1win crash [url=https://aviator-igra-1.ru/]aviator-igra-1.ru[/url] .
aviator igra_teOn
9 Sep 25 at 8:44 pm
https://bluepilluk.shop/# fast delivery viagra UK online
Carrollalery
9 Sep 25 at 8:46 pm
Группа препаратов
Получить дополнительные сведения – http://kapelnica-ot-zapoya-nizhniy-novgorod00.ru/vyzvat-kapelniczu-ot-zapoya-nizhnij-novgorod/https://kapelnica-ot-zapoya-nizhniy-novgorod00.ru
Ulyssesemuby
9 Sep 25 at 8:46 pm
Клиника «ТоксинНет» предлагает профессиональную помощь при алкогольной зависимости и запоях в Нижнем Новгороде. Наши опытные наркологи круглосуточно выезжают на дом для оказания экстренной медицинской помощи. Основным методом лечения является капельница от запоя, которая позволяет оперативно снять интоксикацию и стабилизировать общее состояние пациента. Мы обеспечиваем конфиденциальность, индивидуальный подход и высокий уровень безопасности процедур.
Подробнее тут – https://kapelnica-ot-zapoya-nizhniy-novgorod0.ru/kapelnicza-ot-zapoya-na-domu-nizhnij-novgorod
Robertleank
9 Sep 25 at 8:48 pm
I blog quite often and I genuinely thank you for your content.
This article has truly peaked my interest. I will take a note of your site and keep
checking for new information about once a week. I subscribed to your
Feed too.
rv in dallas texas
9 Sep 25 at 8:48 pm
dragonmoney
MichaelFuh
9 Sep 25 at 8:48 pm
SPORT.CHAT — спорт, новости и живой чат во время матчей
https://sport.chat/
9 Sep 25 at 8:50 pm
авиатор играть [url=http://www.aviator-igra-3.ru]авиатор играть[/url] .
aviator igra_yfmi
9 Sep 25 at 8:51 pm
I just like the valuable information you supply in your articles.
I’ll bookmark your blog and take a look at again here frequently.
I am slightly certain I will learn plenty
of new stuff right right here! Good luck for the next!
Pusulabet telegram
9 Sep 25 at 8:54 pm
авиатор игра 1хбет [url=https://aviator-igra-1.ru]авиатор игра 1хбет[/url] .
aviator igra_xxOn
9 Sep 25 at 8:57 pm
Beerhalla играть
Bradleyetesy
9 Sep 25 at 8:59 pm
Купить диплом на заказ вы сможете используя сайт компании. [url=http://d6united.mn.co/posts/87214839/]d6united.mn.co/posts/87214839[/url]
Sazrkxh
9 Sep 25 at 8:59 pm
Hello there! This article couldn’t be written any better!
Reading through this article reminds me of my previous
roommate! He constantly kept talking about this. I most certainly will forward this post to him.
Fairly certain he’s going to have a very good
read. I appreciate you for sharing!
Cheers
9 Sep 25 at 8:59 pm
https://baskadia.com/user/fzsp
AllenGop
9 Sep 25 at 9:00 pm
Thanks for one’s marvelous posting! I definitely enjoyed rsading it,
you can be a great author. I will ensure that I bookmark
your blog and will eventually come back at some point.
I want to encourage yourself to continue your great work, have a nice afternoon!
WordPress Backlinks
9 Sep 25 at 9:02 pm
После поступления вызова наш нарколог выезжает к пациенту в кратчайшие сроки, прибывая по адресу в пределах 30–60 минут. Специалист начинает процедуру с подробного осмотра и диагностики, измеряя ключевые показатели организма: артериальное давление, частоту пульса, насыщенность кислородом и собирая подробный анамнез.
Получить больше информации – [url=https://narcolog-na-dom-novosibirsk00.ru/]vrach-narkolog-na-dom novosibirsk[/url]
Donaldsic
9 Sep 25 at 9:02 pm
Нужна, где заказать медкнижку за 1 час в столице, законно и без проблем? На сайте [url=https://medik-moscov.ru]https://medik-moscov.ru[/url] можно оформить санитарную книжку для работы в лагере, кафе и ресторанах, гостиницах, клиниках, ритейле и многих других сферах. Тариф: новая книжка — от 1390 ?, продление санкнижки с 780 ?. Всё оперативно, с юр. гарантией и близко к метро. Узнайте подробнее — санитарная книжка быстро, быстрое оформление, санитарная книжка.
Spravkiyfh
9 Sep 25 at 9:03 pm
best darknet markets darknet site nexusdarknet site link [url=https://darknetmarketgate.com/ ]darknet market links [/url]
DwayneAricE
9 Sep 25 at 9:03 pm
Нужен автобусный билет? билеты на автобус удобный сервис поиска и бронирования. Широкий выбор направлений, надежные перевозчики, доступные цены и моментальная отправка электронных билетов на почту.
Ronnieler
9 Sep 25 at 9:04 pm
Мы готовы предложить документы институтов, которые расположены на территории всей РФ. Купить диплом о высшем образовании:
[url=http://dposhop.ru/forum/user/3873/]купить аттестат школы за 11[/url]
Diplomi_yoPn
9 Sep 25 at 9:08 pm
Thanks a lot for sharing this with all people you really
understand what you are talking about! Bookmarked.
Please also consult with my site =). We can have a hyperlink change arrangement between us
방이동노래방
9 Sep 25 at 9:14 pm
aviator игра 1win [url=http://aviator-igra-1.ru/]aviator игра 1win[/url] .
aviator igra_zfOn
9 Sep 25 at 9:15 pm
диплом купить с проводкой [url=www.educ-ua14.ru]www.educ-ua14.ru[/url] .
Diplomi_tdkl
9 Sep 25 at 9:15 pm
It’s very effortless to find out any topic on web as compared to books, as I found
this paragraph at this web page.
Immediate NextGen
9 Sep 25 at 9:16 pm
Greetings! I recently came across this fantastic article on virtual gambling and simply resist the chance to share it.
If you’re someone who’s interested to learn more about the world of online casinos,
it is absolutely.
I’ve always been interested in online gaming, and after reading this, I gained so much about how online casinos work.
This post does a great job of explaining everything from what
to watch for in online casinos. If you’re new to the whole scene, or even if you’ve been playing for years,
this article is an essential read. I highly recommend it for anyone who
needs to get more familiar with online gambling options.
Additionally, the article covers some great advice about choosing a reliable online
casino, which I think is extremely important. So many people
overlook this aspect, but this post really shows you the best ways
to ensure you’re playing at a legit site.
What I liked most was the section on rewards and free spins, which I
think is crucial when choosing a site to play on. The insights here are
priceless for anyone looking to maximize their winnings.
In addition, the tips about managing your bankroll were very useful.
The advice is clear and actionable, making it easy for gamblers to take control of
their gambling habits and stay within their limits.
The advantages and disadvantages of online gambling
were also thoroughly discussed. If you’re considering
trying your luck at an online casino, this article is a
great starting point to understand both the excitement and the risks involved.
If you’re into slots, you’ll find tons of valuable tips here.
They really covers all the popular games in detail, giving you the tools you need to improve your chances.
Whether you’re into competitive games like poker or just enjoy
a casual round of slots, this article has plenty for everyone.
I also appreciated the discussion about transaction methods.
It’s crucial to know that you’re using a platform
that’s safe and secure. It’s really helps you make sure your personal information is in good hands when you bet online.
If you’re unsure where to start, I would recommend reading this post.
It’s clear, informative, and packed with valuable insights.
Definitely, one of the best articles I’ve come across in a while on this topic.
If you haven’t yet, I strongly suggest checking it out and seeing
for yourself. You won’t regret it! Trust me, you’ll finish reading feeling like a more informed player
in the online casino world.
If you’re an experienced gambler, this article
is an excellent resource. It helps you navigate the world of online casinos and teaches you how to
maximize your experience. Definitely worth checking out!
I really liked how well-researched and thorough this article is.
I’ll definitely be coming back to it whenever I need advice on casino games.
Has anyone else read it yet? What do you think?
Feel free to share!
link
9 Sep 25 at 9:17 pm
авиатор игра на деньги скачать [url=www.aviator-igra-1.ru/]авиатор игра на деньги скачать[/url] .
aviator igra_yrOn
9 Sep 25 at 9:20 pm