2014-05-19 10:16:43 +02:00
|
|
|
<?php
|
|
|
|
|
2014-06-04 09:33:24 +02:00
|
|
|
class ProgramsController extends MSController
|
2014-05-19 10:16:43 +02:00
|
|
|
{
|
2014-06-06 09:47:15 +02:00
|
|
|
const PROGS_INDEX_ROWSIZE = 4;
|
|
|
|
const PROGS_INDEX_PAGESIZE = 16;
|
2014-05-19 10:16:43 +02:00
|
|
|
|
|
|
|
public $layout='//layouts/column2';
|
|
|
|
|
2014-06-04 18:06:38 +02:00
|
|
|
public $menu=array();
|
|
|
|
|
2014-05-19 10:16:43 +02:00
|
|
|
/**
|
|
|
|
* @return array action filters
|
|
|
|
*/
|
|
|
|
public function filters()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'accessControl', // perform access control for CRUD operations
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Specifies the access control rules.
|
|
|
|
* This method is used by the 'accessControl' filter.
|
|
|
|
* @return array access control rules
|
|
|
|
*/
|
|
|
|
public function accessRules()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array('allow', // allow all users to perform 'index' and 'view' actions
|
2014-07-19 19:35:53 +02:00
|
|
|
'actions'=>array('index','view', 'download'),
|
2014-05-19 10:16:43 +02:00
|
|
|
'users'=>array('*'),
|
|
|
|
),
|
2014-05-28 10:38:11 +02:00
|
|
|
array('allow', // allow authenticated user to perform 'create' and 'update' actions
|
|
|
|
'actions'=>array('create','update','admin','delete'),
|
|
|
|
'users'=>array('@'),
|
|
|
|
),
|
2014-05-19 10:16:43 +02:00
|
|
|
// array('allow', // allow admin user to perform 'admin' and 'delete' actions
|
2014-05-28 10:38:11 +02:00
|
|
|
// 'actions'=>array(),
|
2014-05-19 10:16:43 +02:00
|
|
|
// 'users'=>array('admin'),
|
|
|
|
// ),
|
2014-05-28 10:38:11 +02:00
|
|
|
array('deny', // deny everythign else to all users
|
|
|
|
'users'=>array('*'),
|
|
|
|
),
|
2014-05-19 10:16:43 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays a particular model.
|
|
|
|
* @param integer $id the ID of the model to be displayed
|
2014-05-28 17:19:57 +02:00
|
|
|
* @throws CHttpException when $id is integer
|
2014-05-19 10:16:43 +02:00
|
|
|
*/
|
|
|
|
public function actionView($id)
|
|
|
|
{
|
2014-06-12 14:36:34 +02:00
|
|
|
$this->layout = '//layouts/main';
|
|
|
|
|
2014-05-28 17:19:57 +02:00
|
|
|
if (is_numeric($id))
|
2014-05-28 11:26:17 +02:00
|
|
|
{
|
2014-06-12 14:36:34 +02:00
|
|
|
if (Yii::app()->user->name == 'admin') {
|
|
|
|
$model = $this->loadModelByID($id);
|
|
|
|
} else {
|
|
|
|
throw new CHttpException(400, "You can't access a program by ID");
|
|
|
|
}
|
2014-05-28 11:26:17 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-05-28 17:19:57 +02:00
|
|
|
$model = $this->loadModelByName($id);
|
2014-05-28 11:26:17 +02:00
|
|
|
}
|
|
|
|
|
2014-05-19 10:16:43 +02:00
|
|
|
$this->render('view',array(
|
2014-05-28 11:26:17 +02:00
|
|
|
'model'=>$model,
|
2014-05-19 10:16:43 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2014-07-19 19:35:53 +02:00
|
|
|
/**
|
|
|
|
* Displays a particular model.
|
|
|
|
* @param integer $id the ID of the model to be displayed
|
|
|
|
* @throws CHttpException when $id is integer
|
|
|
|
*/
|
|
|
|
public function actionDownload($id)
|
|
|
|
{
|
|
|
|
$this->layout = '//layouts/main';
|
|
|
|
|
|
|
|
if (is_numeric($id))
|
|
|
|
{
|
|
|
|
if (Yii::app()->user->name == 'admin') {
|
|
|
|
$model = $this->loadModelByID($id);
|
|
|
|
} else {
|
|
|
|
throw new CHttpException(400, "You can't access a program by ID");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$model = $this->loadModelByName($id);
|
|
|
|
}
|
|
|
|
|
|
|
|
$model->Downloads++;
|
|
|
|
$model->save();
|
|
|
|
|
|
|
|
$this->redirect($model->getDirectDownloadLink());
|
|
|
|
}
|
|
|
|
|
2014-05-19 10:16:43 +02:00
|
|
|
/**
|
|
|
|
* Creates a new model.
|
|
|
|
* If creation is successful, the browser will be redirected to the 'view' page.
|
|
|
|
*/
|
|
|
|
public function actionCreate()
|
|
|
|
{
|
2014-05-28 11:02:52 +02:00
|
|
|
$model=new Program();
|
2014-05-19 10:16:43 +02:00
|
|
|
|
|
|
|
// Uncomment the following line if AJAX validation is needed
|
|
|
|
// $this->performAjaxValidation($model);
|
|
|
|
|
2014-05-28 11:02:52 +02:00
|
|
|
if (isset($_POST['Program'])) {
|
|
|
|
$model->attributes=$_POST['Program'];
|
2014-05-19 10:16:43 +02:00
|
|
|
if ($model->save()) {
|
|
|
|
$this->redirect(array('view','id'=>$model->ID));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->render('create',array(
|
|
|
|
'model'=>$model,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates a particular model.
|
|
|
|
* If update is successful, the browser will be redirected to the 'view' page.
|
|
|
|
* @param integer $id the ID of the model to be updated
|
|
|
|
*/
|
|
|
|
public function actionUpdate($id)
|
|
|
|
{
|
2014-05-28 17:19:57 +02:00
|
|
|
$model=$this->loadModelByID($id);
|
2014-05-19 10:16:43 +02:00
|
|
|
|
|
|
|
// Uncomment the following line if AJAX validation is needed
|
|
|
|
// $this->performAjaxValidation($model);
|
|
|
|
|
2014-05-28 11:02:52 +02:00
|
|
|
if (isset($_POST['Program'])) {
|
|
|
|
$model->attributes=$_POST['Program'];
|
2014-05-19 10:16:43 +02:00
|
|
|
if ($model->save()) {
|
|
|
|
$this->redirect(array('view','id'=>$model->ID));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->render('update',array(
|
|
|
|
'model'=>$model,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes a particular model.
|
|
|
|
* If deletion is successful, the browser will be redirected to the 'admin' page.
|
|
|
|
* @param integer $id the ID of the model to be deleted
|
2014-05-28 10:38:11 +02:00
|
|
|
* @throws CHttpException on invalid request
|
2014-05-19 10:16:43 +02:00
|
|
|
*/
|
|
|
|
public function actionDelete($id)
|
|
|
|
{
|
2014-07-06 15:45:52 +02:00
|
|
|
// if (Yii::app()->request->isPostRequest) {
|
2014-05-19 10:16:43 +02:00
|
|
|
// we only allow deletion via POST request
|
2014-07-06 15:45:52 +02:00
|
|
|
|
|
|
|
$model = $this->loadModelByID($id);
|
|
|
|
|
|
|
|
$model->deleteDescriptions();
|
|
|
|
$model->delete();
|
2014-05-19 10:16:43 +02:00
|
|
|
|
|
|
|
// if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser
|
|
|
|
if (!isset($_GET['ajax'])) {
|
|
|
|
$this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('admin'));
|
|
|
|
}
|
2014-07-06 15:45:52 +02:00
|
|
|
// } else {
|
|
|
|
// throw new CHttpException(400,'Invalid request. Please do not repeat this request again.');
|
|
|
|
// }
|
2014-05-19 10:16:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lists all models.
|
|
|
|
*/
|
2014-06-30 22:51:59 +02:00
|
|
|
public function actionIndex($categoryfilter)
|
2014-05-19 10:16:43 +02:00
|
|
|
{
|
2014-05-23 11:22:34 +02:00
|
|
|
$this->layout = '//layouts/main';
|
|
|
|
|
2014-06-02 19:31:14 +02:00
|
|
|
if (isset($_GET['page']) && is_numeric($_GET['page'])) {
|
2014-06-06 09:47:15 +02:00
|
|
|
$page = $_GET['page'];
|
2014-06-02 19:31:14 +02:00
|
|
|
} else {
|
2014-06-06 09:47:15 +02:00
|
|
|
$page = 1;
|
2014-06-02 19:31:14 +02:00
|
|
|
}
|
|
|
|
|
2014-06-06 09:47:15 +02:00
|
|
|
$criteria = new CDbCriteria;
|
|
|
|
$criteria->order = "Sterne DESC, add_date DESC";
|
2014-06-30 22:51:59 +02:00
|
|
|
if (! empty($categoryfilter))
|
|
|
|
$criteria->addCondition("Kategorie = :cat");
|
|
|
|
$criteria->params[':cat'] = $categoryfilter;
|
|
|
|
$criteria->addCondition("visible=1");
|
2014-06-06 09:47:15 +02:00
|
|
|
|
|
|
|
$all = Program::model()->findAll($criteria);
|
|
|
|
/* @var $all Program[] */
|
|
|
|
|
|
|
|
$pagecount = ceil(count($all) / self::PROGS_INDEX_PAGESIZE);
|
|
|
|
|
|
|
|
$all = array_slice($all, ($page - 1) * self::PROGS_INDEX_PAGESIZE, self::PROGS_INDEX_PAGESIZE);
|
|
|
|
|
|
|
|
$rowcount = ceil((count($all) / self::PROGS_INDEX_ROWSIZE));
|
|
|
|
|
|
|
|
$progdata = array();
|
|
|
|
for ($i = 0; $i < $rowcount; $i++) {
|
|
|
|
$progdata[] = array();
|
|
|
|
foreach (array_slice($all, $i * self::PROGS_INDEX_ROWSIZE, self::PROGS_INDEX_ROWSIZE) as $record) {
|
|
|
|
$progdata[$i][] = $record;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//#######
|
|
|
|
|
|
|
|
$data = array();
|
|
|
|
$data['page'] = $page;
|
|
|
|
$data['pagecount'] = $pagecount;
|
|
|
|
$data['rowcount'] = $rowcount;
|
|
|
|
$data['data'] = $progdata;
|
2014-06-30 22:51:59 +02:00
|
|
|
$data['category'] = $categoryfilter;
|
2014-06-06 09:47:15 +02:00
|
|
|
|
2014-06-02 19:31:14 +02:00
|
|
|
$this->render('index', $data);
|
2014-05-19 10:16:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Manages all models.
|
|
|
|
*/
|
|
|
|
public function actionAdmin()
|
|
|
|
{
|
2014-05-28 11:02:52 +02:00
|
|
|
$model=new Program('search');
|
2014-05-19 10:16:43 +02:00
|
|
|
$model->unsetAttributes(); // clear any default values
|
2014-05-28 11:02:52 +02:00
|
|
|
if (isset($_GET['Program'])) {
|
|
|
|
$model->attributes=$_GET['Program'];
|
2014-05-19 10:16:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->render('admin',array(
|
|
|
|
'model'=>$model,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the data model based on the primary key given in the GET variable.
|
|
|
|
* If the data model is not found, an HTTP exception will be raised.
|
|
|
|
* @param integer $id the ID of the model to be loaded
|
2014-05-28 11:02:52 +02:00
|
|
|
* @return Program the loaded model
|
2014-05-19 10:16:43 +02:00
|
|
|
* @throws CHttpException
|
|
|
|
*/
|
2014-05-28 11:26:17 +02:00
|
|
|
public function loadModelByID($id)
|
2014-05-19 10:16:43 +02:00
|
|
|
{
|
2014-05-28 11:02:52 +02:00
|
|
|
$model=Program::model()->findByPk($id);
|
2014-05-19 10:16:43 +02:00
|
|
|
if ($model===null) {
|
2014-05-28 17:19:57 +02:00
|
|
|
throw new CHttpException(404,'The requested Programm (by ID) does not exist.');
|
2014-05-19 10:16:43 +02:00
|
|
|
}
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
2014-05-28 11:26:17 +02:00
|
|
|
/**
|
|
|
|
* Returns the data model based on the name of Program
|
|
|
|
* If the data model is not found, an HTTP exception will be raised.
|
|
|
|
* @param string $name the ID of the model to be loaded
|
|
|
|
* @return Program the loaded model
|
|
|
|
* @throws CHttpException
|
|
|
|
*/
|
|
|
|
public function loadModelByName($name)
|
|
|
|
{
|
|
|
|
$model=Program::model()->findByAttributes(['Name' => $name]);
|
|
|
|
if ($model===null) {
|
2014-05-28 17:19:57 +02:00
|
|
|
throw new CHttpException(404,'The requested programm (by Name) does not exist.');
|
2014-05-28 11:26:17 +02:00
|
|
|
}
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
2014-05-19 10:16:43 +02:00
|
|
|
/**
|
|
|
|
* Performs the AJAX validation.
|
2014-05-28 11:02:52 +02:00
|
|
|
* @param Program $model the model to be validated
|
2014-05-19 10:16:43 +02:00
|
|
|
*/
|
|
|
|
protected function performAjaxValidation($model)
|
|
|
|
{
|
2014-05-28 11:02:52 +02:00
|
|
|
if (isset($_POST['ajax']) && $_POST['ajax']==='program-form') {
|
2014-05-19 10:16:43 +02:00
|
|
|
echo CActiveForm::validate($model);
|
|
|
|
Yii::app()->end();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|