1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-06-26 03:40:56 +03:00
kangana/application/classes/Controller/Subscription.php

140 lines
4.1 KiB
PHP
Raw Normal View History

2014-01-18 10:02:16 +02:00
<?php defined('SYSPATH') or die('No direct script access.');
/**
* Subscription controller.
**/
class Controller_Subscription extends Controller_Layout {
protected $secure_actions = array(
2014-01-29 10:52:33 +02:00
'index','create', 'edit', 'delete', 'view'
2014-01-18 10:02:16 +02:00
);
protected $controls = array(
'title' => 'input',
'description' => 'textarea',
'period' => 'input',
// 'price' => 'input'
);
public function action_index()
{
$this->template = new View_Subscription_Index;
$this->template->title = __('Subscription index');
$this->template->items = ORM::factory('Subscription')
->filter_by_page($this->request->param('page'))
->find_all();
}
public function action_create()
{
$this->template = new View_Edit;
$this->template->model = ORM::factory('Subscription');
$this->template->title = __('New subscription');
$this->_edit($this->template->model);
}
public function action_edit()
{
$this->template = new View_Edit;
$this->template->title = __('Edit subscription');
$id = $this->request->param('id');
$model = ORM::factory('Subscription', $id);
if (!$model->loaded())
{
$this->redirect('error/404');
}
$this->_edit($model);
}
public function action_delete()
{
$this->template = new View_Delete;
$id = $this->request->param('id');
$model = ORM::factory('Subscription', $id);
if (!$model->loaded())
{
$this->redirect('error/404');
}
$this->template->title = __('Delete subscription');
$this->template->content_title = $model->title;
$this->template->content = $model->description;
$confirmation = $this->request->post('confirmation');
if ($confirmation === 'yes') {
2014-02-04 10:53:23 +02:00
$model->delete();
2014-01-18 10:02:16 +02:00
$this->redirect('/');
}
}
2014-01-28 13:07:36 +02:00
public function action_view()
{
$this->template = new View_Letter_Index;
$id = $this->request->param('id');
$model = ORM::factory('Subscription', $id)->with('letters');
if (!$model->loaded())
{
$this->redirect('error/404');
}
$this->template->title = __('Subscription').' '.$model->title;
2014-01-29 10:52:33 +02:00
$this->template->subscription_id = $id;
2014-01-28 13:07:36 +02:00
$this->template->items = $model->letters
->filter_by_page($this->request->param('page'))
2014-01-29 10:52:33 +02:00
->order_by('order')
2014-01-28 13:07:36 +02:00
->find_all();
}
2014-01-18 10:02:16 +02:00
2014-01-28 09:50:18 +02:00
public function action_subscribe()
{
$this->template = new View_Subscription_Subscribe;
$id = $this->request->param('id');
$subscription = ORM::factory('Subscription', $id);
if (!$subscription->loaded())
{
$this->redirect('error/404');
}
$this->template->title = __('Subscribe to ').$subscription->title;
$controls = array(
'name' => 'input',
'email' => 'input'
);
$this->template->controls = $controls;
$this->template->errors = array();
2014-02-04 06:35:26 +02:00
$model = ORM::factory('Client');
2014-01-28 09:50:18 +02:00
if ($this->request->method() === HTTP_Request::POST) {
$model = ORM::factory('Client')->where('email', '=', $this->request->post('email'))->find();
$model->values($this->request->post(), array_keys($controls));
$model->customize();
$validation = $model->validate_create($this->request->post());
try
{
if ($validation->check())
{
$model->save();
$model->add('subscription', $subscription);
2014-01-29 14:13:04 +02:00
$task = ORM::factory('Task');
$letter = $subscription->next_letter();
$task->letter_id = $letter->id;
$task->client_id = $model->id;
// now we break the abstraction to speed things up
$task->status = Model_Task::STATUS_SENT;
$task->date = date('Y-m-d');
$task->create();
$letter->send($model->email);
2014-01-28 09:50:18 +02:00
}
else
{
$this->template->errors = $validation->errors('default');
}
}
catch (ORM_Validation_Exception $e)
{
$this->template->errors = $e->errors('default');
}
if (empty($this->template->errors))
{
Session::instance()->set('flash_success', __('You were subscribed. A welcome email has been sent to you. Please check your inbox.'));
}
}
$this->template->model = $model;
}
2014-01-18 10:02:16 +02:00
}