<?php
if(!defined("MCR")){ exit("Hacking Attempt!"); }
class submodule{
private $core, $db, $cfg, $user, $lng;
public function __construct($core){
$this->core = $core;
$this->db = $core->db;
$this->cfg = $core->cfg;
$this->user = $core->user;
$this->lng = $core->lng_m;
if(!$this->core->is_access('sys_adm_news')){ $this->core->notify($this->core->lng['403'], $this->core->lng['e_403']); }
$bc = array(
$this->lng['mod_name'] => ADMIN_URL,
$this->lng['news'] => ADMIN_URL."&do=news"
);
$this->core->bc = $this->core->gen_bc($bc);
}
private function news_array(){
$start = $this->core->pagination($this->cfg->pagin['adm_news'], 0, 0); // Set start pagination
$end = $this->cfg->pagin['adm_news']; // Set end pagination
$where = "";
$sort = "`n`.id";
$sortby = "DESC";
if(isset($_GET['search']) && !empty($_GET['search'])){
$search = $this->db->safesql(urldecode($_GET['search']));
$where = "WHERE `n`.title LIKE '%$search%'";
}
if(isset($_GET['sort']) && !empty($_GET['sort'])){
$expl = explode(' ', $_GET['sort']);
$sortby = ($expl[0]=='asc') ? "ASC" : "DESC";
switch(@$expl[1]){
case 'title': $sort = "`n`.title"; break;
case 'category': $sort = "`c`.title"; break;
}
}
$query = $this->db->query("SELECT `n`.id, `n`.cid, `n`.title, `c`.title AS `category`
FROM `mcr_news` AS `n`
LEFT JOIN `mcr_news_cats` AS `c`
ON `c`.id=`n`.cid
$where
ORDER BY $sort $sortby
LIMIT $start, $end");
if(!$query || $this->db->num_rows($query)<=0){ return $this->core->sp(MCR_THEME_MOD."admin/news/new-none.html"); }
ob_start();
while($ar = $this->db->fetch_assoc($query)){
$page_data = array(
"ID" => intval($ar['id']),
"CID" => intval($ar['cid']),
"TITLE" => $this->db->HSC($ar['title']),
"CATEGORY" => $this->db->HSC($ar['category'])
);
echo $this->core->sp(MCR_THEME_MOD."admin/news/new-id.html", $page_data);
}
return ob_get_clean();
}
private function news_list(){
$sql = "SELECT COUNT(*) FROM `mcr_news`";
$page = "?mode=admin&do=news";
if(isset($_GET['search']) && !empty($_GET['search'])){
$search = $this->db->safesql(urldecode($_GET['search']));
$sql = "SELECT COUNT(*) FROM `mcr_news` WHERE title LIKE '%$search%'";
$search = $this->db->HSC(urldecode($_GET['search']));
$page .= "&search=$search";
}
if(isset($_GET['sort']) && !empty($_GET['sort'])){
$page .= '&sort='.$this->db->HSC(urlencode($_GET['sort']));
}
$query = $this->db->query($sql);
$ar = @$this->db->fetch_array($query);
$data = array(
"PAGINATION" => $this->core->pagination($this->cfg->pagin['adm_news'], $page.'&pid=', $ar[0]),
"NEWS" => $this->news_array()
);
return $this->core->sp(MCR_THEME_MOD."admin/news/new-list.html", $data);
}
private function delete(){
if(!$this->core->is_access('sys_adm_news_delete')){ $this->core->notify($this->core->lng["e_msg"], $this->core->lng['e_403'], 2, '?mode=admin&do=news'); }
if($_SERVER['REQUEST_METHOD']!='POST'){ $this->core->notify($this->core->lng["e_msg"], $this->core->lng['e_hack'], 2, '?mode=admin&do=news'); }
$list = @$_POST['id'];
if(empty($list)){ $this->core->notify($this->core->lng["e_msg"], $this->lng['news_not_selected'], 2, '?mode=admin&do=news'); }
$list = $this->core->filter_int_array($list);
$list = array_unique($list);
$list = $this->db->safesql(implode(", ", $list));
if(!$this->db->remove_fast("mcr_news", "id IN ($list)")){ $this->core->notify($this->core->lng["e_msg"], $this->core->lng["e_sql_critical"], 2, '?mode=admin&do=news'); }
$count1 = $this->db->affected_rows();
// Последнее обновление пользователя
$this->db->update_user($this->user);
// Лог действия
$this->db->actlog($this->lng['log_del_news']." $list ".$this->lng['log_news'], $this->user->id);
$this->core->notify($this->core->lng["e_success"], $this->lng['news_del_elements']." $count1", 3, '?mode=admin&do=news');
}
private function categories($selected=1){
$selected = intval($selected);
$query = $this->db->query("SELECT id, title FROM `mcr_news_cats` ORDER BY title ASC");
if(!$query || $this->db->num_rows($query)<=0){
$data = array(
"ID" => 1,
"TITLE" => $this->lng['news_wo_cats'],
"SELECTED" => 'selected disabled',
);
return $this->core->sp(MCR_THEME_MOD."admin/news/cid-list-id.html", $data);
}
ob_start();
while($ar = $this->db->fetch_assoc($query)){
$data = array(
"ID" => intval($ar['id']),
"TITLE" => $this->db->HSC($ar['title']),
"SELECTED" => ($selected==intval($ar['id'])) ? 'selected' : '',
);
echo $this->core->sp(MCR_THEME_MOD."admin/news/cid-list-id.html", $data);
}
return ob_get_clean();
}
private function get_preview($title='', $text='', $category='', $cid=0, $vote=0){
$data = array(
"TITLE" => $this->db->HSC($title),
"TEXT" => $text,
"CATEGORY" => $this->db->HSC($category),
"CID" => intval($cid),
"LIKES" => ($vote!==1) ? '' : $this->core->sp(MCR_THEME_MOD."admin/news/new-preview-likes.html", $data),
);
return $this->core->sp(MCR_THEME_MOD."admin/news/new-preview.html", $data);
}
private function add(){
if(!$this->core->is_access('sys_adm_news_add')){ $this->core->notify($this->core->lng["e_msg"], $this->core->lng['e_403'], 2, '?mode=admin&do=news'); }
$bc = array(
$this->lng['mod_name'] => ADMIN_URL."",
$this->lng['news'] => ADMIN_URL."&do=news",
$this->lng['news_add'] => ADMIN_URL."&do=news&op=add",
);
$this->core->bc = $this->core->gen_bc($bc);
$bb = $this->core->load_bb_class(); // Загрузка класса BB-кодов
$categories = $this->categories();
$title = '';
$text = '';
$text_short = '';
$votes = '';
$discuses = '';
$attached = '';
$preview = '';
if($_SERVER['REQUEST_METHOD']=='POST'){
$title = $this->db->safesql(@$_POST['title']);
$cid = intval(@$_POST['cid']);
$check_cid = $this->db->query("SELECT title FROM `mcr_news_cats` WHERE id='$cid'");
if(!$check_cid || $this->db->num_rows($check_cid)<=0){ $this->core->notify($this->core->lng["e_msg"], $this->lng['news_e_cat_not_exist'], 2, '?mode=admin&do=news&op=edit&id='.$id); }
$vote = (intval(@$_POST['vote'])===1) ? 1 : 0;
$discus = (intval(@$_POST['discus'])===1) ? 1 : 0;
$attach = (intval(@$_POST['attach'])===1) ? 1 : 0;
// Обработка описания +
$text_bb_short = @$_POST['text_short'];
$text_bb = @$_POST['text'];
$text_bb_trim = trim($text_bb);
$text_bb_short_trim = trim($text_bb_short);
if(empty($text_bb_trim)){ $this->core->notify($this->core->lng["e_msg"], $this->lng['news_e_desc'], 2, '?mode=admin&do=news&op=add'); }
if(empty($text_bb_short_trim)){ $this->core->notify($this->core->lng["e_msg"], $this->lng['news_e_sdesc'], 2, '?mode=admin&do=news&op=add'); }
$text_html = $bb->parse($text_bb);
$text_html_short = $bb->parse($text_bb_short);
$safe_text_html = $this->db->safesql($text_html);
$safe_text_html_short = $this->db->safesql($text_html_short);
$safe_text_bb = $this->db->safesql($text_bb);
$safe_text_bb_short = $this->db->safesql($text_bb_short);
$text_html_strip = trim(strip_tags($text_html, "<img><hr><iframe>"));
$text_html_short_strip = trim(strip_tags($text_html_short, "<img><hr><iframe>"));
if(empty($text_html_strip)){ $this->core->notify($this->core->lng["e_msg"], $this->lng['news_e_desc'], 2, '?mode=admin&do=news&op=add'); }
if(empty($text_html_short_strip)){ $this->core->notify($this->core->lng["e_msg"], $this->lng['news_e_sdesc'], 2, '?mode=admin&do=news&op=add'); }
// Обработка описания -
if(isset($_POST['preview'])){
$cid_ar = $this->db->fetch_assoc($check_cid);
$preview = $this->get_preview($title, $text_html, $cid_ar['title'], $cid, $vote);
$text = $text_bb;
$text_short = $text_bb_short;
$categories = $this->categories($cid);
$votes = ($vote===1) ? 'checked' : '';
$discuses = ($discus===1) ? 'checked' : '';
$attached = ($attach===1) ? 'checked' : '';
}else{
$new_data = array(
"time_create" => time(),
"time_last" => time(),
"uid_create" => $this->user->id,
"uid_last" => $this->user->id
);
$new_data = $this->db->safesql(json_encode($new_data));
$insert = $this->db->query("INSERT INTO `mcr_news`
(cid, title, text_bb, text_html, text_bb_short, text_html_short, vote, discus, attach, uid, `data`)
VALUES
('$cid', '$title', '$safe_text_bb', '$safe_text_html', '$safe_text_bb_short', '$safe_text_html_short', '$vote', '$discus', '$attach', '{$this->user->id}', '$new_data')");
if(!$insert){ $this->core->notify($this->core->lng["e_msg"], $this->core->lng["e_sql_critical"], 2, '?mode=admin&do=news&op=add'); }
$id = $this->db->insert_id();
// Последнее обновление пользователя
$this->db->update_user($this->user);
// Лог действия
$this->db->actlog($this->lng['log_add_news']." #$id ".$this->lng['log_news'], $this->user->id);
$this->core->notify($this->core->lng["e_success"], $this->lng['news_add_success'], 3, '?mode=admin&do=news');
}
}
$result = array(
"PAGE" => $this->lng['news_add_page_name'],
"CATEGORIES" => $categories,
"TITLE" => $this->db->HSC($title),
"TEXT_SHORT" => $text_short,
"TEXT" => $text,
"VOTE" => $votes,
"DISCUS" => $discuses,
"ATTACH" => $attached,
"BB_PANEL_SHORT" => $bb->bb_panel('bb-short'),
"BB_PANEL_FULL" => $bb->bb_panel('bb-full'),
"BUTTON" => $this->lng['news_add_btn'],
"PREVIEW" => $preview,
);
return $this->core->sp(MCR_THEME_MOD."admin/news/new-add.html", $result);
}
private function edit(){
if(!$this->core->is_access('sys_adm_news_edit')){ $this->core->notify($this->core->lng["e_msg"], $this->core->lng['e_403'], 2, '?mode=admin&do=news'); }
$id = intval($_GET['id']);
$preview = '';
$query = $this->db->query("SELECT cid, title, text_bb, text_bb_short, vote, discus, attach, `data`
FROM `mcr_news`
WHERE id='$id'");
if(!$query || $this->db->num_rows($query)<=0){ $this->core->notify($this->core->lng["e_msg"], $this->core->lng["e_sql_critical"], 2, '?mode=admin&do=news'); }
$ar = $this->db->fetch_assoc($query);
$categories = $this->categories($ar['cid']);
$title = $this->db->HSC($ar['title']);
$text = $this->db->HSC($ar['text_bb']);
$text_short = $this->db->HSC($ar['text_bb_short']);
$votes = (intval($ar['vote'])===1) ? 'checked' : '';
$discuses = (intval($ar['discus'])===1) ? 'checked' : '';
$attached = (intval($ar['attach'])===1) ? 'checked' : '';
$data = json_decode($ar['data']);
$bc = array(
$this->lng['mod_name'] => ADMIN_URL."",
$this->lng['news'] => ADMIN_URL."&do=news",
$this->lng['news_edit'] => ADMIN_URL."&do=news&op=edit&id=$id"
);
$this->core->bc = $this->core->gen_bc($bc);
$bb = $this->core->load_bb_class(); // Загрузка класса BB-кодов
if($_SERVER['REQUEST_METHOD']=='POST'){
$title = $this->db->safesql(@$_POST['title']);
$cid = intval(@$_POST['cid']);
$check_cid = $this->db->query("SELECT title FROM `mcr_news_cats` WHERE id='$cid'");
if(!$check_cid || $this->db->num_rows($check_cid)<=0){ $this->core->notify($this->core->lng["e_msg"], $this->lng['news_e_cat_not_exist'], 2, '?mode=admin&do=news&op=edit&id='.$id); }
$vote = (intval(@$_POST['vote'])===1) ? 1 : 0;
$discus = (intval(@$_POST['discus'])===1) ? 1 : 0;
$attach = (intval(@$_POST['attach'])===1) ? 1 : 0;
// Обработка описания +
$text_bb_short = @$_POST['text_short'];
$text_bb = @$_POST['text'];
$text_bb_trim = trim($text_bb);
$text_bb_short_trim = trim($text_bb_short);
if(empty($text_bb_trim)){ $this->core->notify($this->core->lng["e_msg"], $this->lng['news_e_desc'], 2, '?mode=admin&do=news&op=edit&id='.$id); }
if(empty($text_bb_short_trim)){ $this->core->notify($this->core->lng["e_msg"], $this->lng['news_e_sdesc'], 2, '?mode=admin&do=news&op=edit&id='.$id); }
$text_html = $bb->parse($text_bb);
$text_html_short = $bb->parse($text_bb_short);
$safe_text_html = $this->db->safesql($text_html);
$safe_text_html_short = $this->db->safesql($text_html_short);
$safe_text_bb = $this->db->safesql($text_bb);
$safe_text_bb_short = $this->db->safesql($text_bb_short);
$text_html_strip = trim(strip_tags($text_html, "<img><hr><iframe>"));
$text_html_short_strip = trim(strip_tags($text_html_short, "<img><hr><iframe>"));
if(empty($text_html_strip)){ $this->core->notify($this->core->lng["e_msg"], $this->lng['news_e_desc'], 2, '?mode=admin&do=news&op=edit&id='.$id); }
if(empty($text_html_short_strip)){ $this->core->notify($this->core->lng["e_msg"], $this->lng['news_e_sdesc'], 2, '?mode=admin&do=news&op=edit&id='.$id); }
// Обработка описания -
if(isset($_POST['preview'])){
$cid_ar = $this->db->fetch_assoc($check_cid);
$preview = $this->get_preview($title, $text_html, $cid_ar['title'], $cid, $vote);
$title = $this->db->HSC($title);
$text = $text_bb;
$text_short = $text_bb_short;
$categories = $this->categories($cid);
$votes = ($vote===1) ? 'checked' : '';
$discuses = ($discus===1) ? 'checked' : '';
$attached = ($attach===1) ? 'checked' : '';
}else{
$new_data = array(
"time_create" => $data->time_create,
"time_last" => time(),
"uid_create" => $data->uid_create,
"uid_last" => $this->user->id
);
$new_data = $this->db->safesql(json_encode($new_data));
$update = $this->db->query("UPDATE `mcr_news`
SET cid='$cid', title='$title', text_bb='$safe_text_bb', text_html='$safe_text_html',
text_bb_short='$safe_text_bb_short', text_html_short='$safe_text_html_short',
vote='$vote', discus='$discus', attach='$attach', `data`='$new_data'
WHERE id='$id'");
if(!$update){ $this->core->notify($this->core->lng["e_msg"], $this->core->lng["e_sql_critical"], 2, '?mode=admin&do=news&op=edit&id='.$id); }
// Последнее обновление пользователя
$this->db->update_user($this->user);
// Лог действия
$this->db->actlog($this->lng['log_edit_news']." #$id ".$this->lng['log_news'], $this->user->id);
$this->core->notify($this->core->lng["e_success"], $this->lng['news_edit_success'], 3, '?mode=admin&do=news');
}
}
$result = array(
"PAGE" => $this->lng['news_edit_page_name'],
"CATEGORIES" => $categories,
"TITLE" => $title,
"TEXT_SHORT" => $text_short,
"TEXT" => $text,
"VOTE" => $votes,
"DISCUS" => $discuses,
"ATTACH" => $attached,
"BB_PANEL_SHORT" => $bb->bb_panel('bb-short'),
"BB_PANEL_FULL" => $bb->bb_panel('bb-full'),
"BUTTON" => $this->lng['news_edit_btn'],
"PREVIEW" => $preview,
);
return $this->core->sp(MCR_THEME_MOD."admin/news/new-add.html", $result);
}
public function content(){
$op = (isset($_GET['op'])) ? $_GET['op'] : 'list';
switch($op){
case 'add': $content = $this->add(); break;
case 'edit': $content = $this->edit(); break;
case 'delete': $this->delete(); break;
default: $content = $this->news_list(); break;
}
return $content;
}
}
?>