Файл: system/controllers/content/actions/item_add.php
Строк: 205
<?php
class actionContentItemAdd extends cmsAction {
public function run(){
$user = cmsUser::getInstance();
// Получаем название типа контента
$ctype_name = $this->request->get('ctype_name');
// проверяем наличие доступа
if (!cmsUser::isAllowed($ctype_name, 'add')) { cmsCore::error404(); }
// Получаем тип контента
$ctype = $this->model->getContentTypeByName($ctype_name);
if (!$ctype) { cmsCore::error404(); }
// проверяем что не превышен лимит на число записей
$user_items_count = $this->model->getUserContentItemsCount($ctype_name, $user->id, false);
if (cmsUser::isPermittedLimitReached($ctype_name, 'limit', $user_items_count)){
cmsUser::addSessionMessage(sprintf(LANG_CONTENT_COUNT_LIMIT, $ctype['labels']['many']), 'error');
$this->redirectBack();
}
// Проверяем ограничение по карме
if (cmsUser::isPermittedLimitHigher($ctype_name, 'karma', $user->karma)){
cmsUser::addSessionMessage(sprintf(LANG_CONTENT_KARMA_LIMIT, cmsUser::getPermissionValue($ctype_name, 'karma')), 'error');
$this->redirectBack();
}
$item = array();
if ($ctype['is_cats']){
$category_id = $this->request->get('to_id');
}
// Определяем наличие полей-свойств
$props = $this->model->getContentProps($ctype['name']);
$ctype['props'] = $props;
// Если этот контент можно создавать в группах (сообществах) то получаем список групп
$groups_list = array();
if ($ctype['is_in_groups'] || $ctype['is_in_groups_only']){
$groups_model = cmsCore::getModel('groups');
$groups = $groups_model->getUserGroups($user->id);
if (!$groups && $ctype['is_in_groups_only']){
cmsUser::addSessionMessage(sprintf(LANG_CONTENT_IS_IN_GROUPS_ONLY, $ctype['labels']['many']), 'error');
$this->redirectBack();
}
$groups_list = ($ctype['is_in_groups_only']) ? array() : array('0'=>'');
$groups_list = $groups_list + array_collection_to_list($groups, 'id', 'title');
}
// Если включены личные папки - получаем их список
$folders_list = array();
if ($ctype['is_folders']){
$folders_list = $this->model->getContentFolders($ctype['id'], $user->id);
$folders_list = array_collection_to_list($folders_list, 'id', 'title');
}
// Получаем поля для данного типа контента
$this->model->orderBy('ordering');
$fields = $this->model->getContentFields($ctype['name']);
$form = $this->getItemForm($ctype, $fields, 'add', array(
'groups_list' => $groups_list,
'folders_list' => $folders_list
));
// Заполняем поля значениями по-умолчанию, взятыми из профиля пользователя
// (для тех полей, в которых это включено)
foreach($fields as $field){
if (!empty($field['options']['profile_value'])){
$item[$field['name']] = $user->{$field['options']['profile_value']};
}
}
$is_moderator = $user->is_admin || $this->model->userIsContentTypeModerator($ctype_name, $user->id);
$is_premoderation = $ctype['is_premod_add'];
cmsEventsManager::hook("content_add", $ctype);
list($form, $item) = cmsEventsManager::hook("content_{$ctype['name']}_form", array($form, $item));
// Форма отправлена?
$is_submitted = $this->request->has('submit');
if (!$is_submitted && !empty($category_id)) { $item['category_id'] = $category_id; }
if ($this->request->has('group_id') && $groups_list && !$is_submitted){
$item['parent_id'] = $this->request->get('group_id');
}
$item['ctype_name'] = $ctype['name'];
$item['ctype_id'] = $ctype['id'];
if ($is_submitted){
if ($ctype['props']){
$props_cat_id = $this->request->get('category_id');
if ($props_cat_id){
$item_props = $this->model->getContentProps($ctype['name'], $props_cat_id);
$item_props_fields = $this->getPropsFields($item_props);
foreach($item_props_fields as $field){
$form->addField('props', $field);
}
}
}
// Парсим форму и получаем поля записи
$item = array_merge($item, $form->parse($this->request, $is_submitted));
// Проверям правильность заполнения
$errors = $form->validate($this, $item);
if (!$errors){
list($item, $errors) = cmsEventsManager::hook('content_validate', array($item, $errors));
}
if (!$errors){
unset($item['ctype_name']);
unset($item['ctype_id']);
$item['is_approved'] = !$ctype['is_premod_add'] || $is_moderator;
$item['parent_type'] = null;
$item['parent_title'] = null;
$item['parent_url'] = null;
$item['is_parent_hidden'] = null;
if (isset($item['parent_id'])){
if (array_key_exists($item['parent_id'], $groups_list) && $item['parent_id'] > 0){
$group = $groups_model->getGroup($item['parent_id']);
$item['parent_type'] = 'group';
$item['parent_title'] = $groups_list[$item['parent_id']];
$item['parent_url'] = href_to_rel('groups', $item['parent_id'], array('content', $ctype_name));
$item['is_parent_hidden'] = $group['is_closed'] ? true : null;
} else {
$item['parent_id'] = null;
}
}
if ($ctype['is_auto_keys']){ $item['seo_keys'] = string_get_meta_keywords($item['content']); }
if ($ctype['is_auto_desc']){ $item['seo_desc'] = string_get_meta_description($item['content']); }
$is_pub_control = cmsUser::isAllowed($ctype['name'], 'pub_on');
$is_date_pub_allowed = $ctype['is_date_range'] && cmsUser::isAllowed($ctype['name'], 'pub_late');
$is_date_pub_end_allowed = $ctype['is_date_range'] && cmsUser::isAllowed($ctype['name'], 'pub_long', 'any');
$is_date_pub_days_allowed = $ctype['is_date_range'] && cmsUser::isAllowed($ctype['name'], 'pub_long', 'days');
$pub_max_days = intval(cmsUser::getPermissionValue($ctype['name'], 'pub_max_days'));
$date_pub_time = isset($item['date_pub']) ? strtotime($item['date_pub']) : time();
$now_time = strtotime(date('Y-m-d', time()));
$is_pub = true;
if ($is_date_pub_allowed){
$days_to_pub = ceil(($date_pub_time - $now_time)/60/60/24);
$is_pub = $is_pub && ($days_to_pub < 1);
}
if ($is_date_pub_end_allowed && !empty($item['date_pub_end'])){
$date_pub_end_time = strtotime($item['date_pub_end']);
$days_from_pub = floor(($now_time - $date_pub_end_time)/60/60/24);
$is_pub = $is_pub && ($days_from_pub < 1);
} else if ($is_date_pub_days_allowed && !$user->is_admin) {
$days = $item['pub_days'];
$date_pub_end_time = $date_pub_time + 60*60*24*$days;
$days_from_pub = floor(($now_time - $date_pub_end_time)/60/60/24);
$is_pub = $is_pub && ($days_from_pub < 1);
$item['date_pub_end'] = date('Y-m-d', $date_pub_end_time);
} else {
$item['date_pub_end'] = false;
}
unset($item['pub_days']);
if (!$is_pub_control) { unset($item['is_pub']); }
if (!isset($item['is_pub'])) { $item['is_pub'] = $is_pub; }
if (!empty($item['is_pub'])) { $item['is_pub'] = $is_pub; }
$item = cmsEventsManager::hook("content_before_add", $item);
$item = cmsEventsManager::hook("content_{$ctype['name']}_before_add", $item);
$item = $this->model->addContentItem($ctype, $item, $fields);
if ($ctype['is_tags']){
$tags_model = cmsCore::getModel('tags');
$tags_model->addTags($item['tags'], $this->name, $ctype['name'], $item['id']);
$item['tags'] = $tags_model->getTagsStringForTarget($this->name, $ctype['name'], $item['id']);
$this->model->updateContentItemTags($ctype['name'], $item['id'], $item['tags']);
}
cmsEventsManager::hook("content_after_add", $item);
cmsEventsManager::hook("content_{$ctype['name']}_after_add", $item);
if ($item['is_approved']){
cmsEventsManager::hook("content_after_add_approve", array('ctype_name'=>$ctype_name, 'item'=>$item));
cmsEventsManager::hook("content_{$ctype['name']}_after_add_approve", $item);
} else {
$this->requestModeration($ctype_name, $item);
}
$back_url = $this->request->get('back');
if ($back_url){
$this->redirect($back_url);
} else {
if ($ctype['options']['item_on']){
$this->redirectTo($ctype_name, $item['slug'] . '.html');
} else {
$this->redirectTo($ctype_name);
}
}
}
if ($errors){
cmsUser::addSessionMessage(LANG_FORM_ERRORS, 'error');
}
}
return cmsTemplate::getInstance()->render('item_form', array(
'do' => 'add',
'parent' => isset($parent) ? $parent : false,
'ctype' => $ctype,
'item' => $item,
'form' => $form,
'props' => $props,
'is_moderator' => $is_moderator,
'is_premoderation' => $is_premoderation,
'is_load_props' => !isset($errors),
'errors' => isset($errors) ? $errors : false
));
}
}