Файл: groups/index.php
Строк: 295
<?php
require_once '../incfiles/core.php';
require_once '../incfiles/func.php';
require_once '../incfiles/auth.php';
require_once '../incfiles/user.php';
if (!empty($_GET['id']) && is_numeric($_GET['id']))
{
$id = abs(intval($_GET['id']));
$result = mysql_query("SELECT * FROM `groups` WHERE `id` = '".$id."' LIMIT 1");
if (mysql_num_rows($result) == true) $arr_group = mysql_fetch_array($result);
else go(URL);
$shop = DB::$dbs->querySingle("SELECT COUNT(`id`) FROM groups_shop_goods WHERE `group_id` = ?", array($id));
$title = checkout($arr_group['name']);
//$shop = DB::$dbs->querySingle("SELECT COUNT(`id`) FROM ".TOUCH_MSG." WHERE `status` = ?", array(1));
require_once '../incfiles/head.php';
if($user['id']==1 && $arr_group['verification']==0)$verification_adm = '<a href="'.URL.'/adm/verification.php?id='.$id.'&verification=1" onclick="Window.Open(this.href); return false"><img src="'.URL.'/design/img/verification.png"/></a>';
elseif($user['id']==1 && $arr_group['verification']==1)$verification_adm = '<a href="'.URL.'/adm/verification.php?id='.$id.'&verification=0" onclick="Window.Open(this.href); return false"><img src="'.URL.'/design/img/verified.png"/></a>';
if($arr_group['verification']==1)$verification = '<div class="right"><img src="'.URL.'/design/img/verification.png"/></div>';
else
$verification = false;
echo '<div class="title">'.$arr_group['name'].'</a>'.$verification_adm.''.$verification.'</div>';
if (!empty($user_id) && in_array($user_id, explode("||", substr($arr_group['blacklist'], 1, -1)))) {echo err(lang('Вы занесены в черный список сообщества','Ви занесені у чорний список спільноти')); require_once '../incfiles/foot.php';exit;}
else if (!empty($user_id) && in_array($user_id, explode("||", substr($arr_group['banlist'], 1, -1))))
{
$arr_group_ban = mysql_fetch_array(mysql_query("SELECT * FROM `groups_ban` WHERE `group_id` = '".$id."' AND `ban_id` = '".$user_id."' LIMIT 1"));
echo err(lang('Вы заблокированы администрацией сообщества<br/>Причина: <b>'.$arr_group_ban['text'].'</b><br/>Розблок через: '.($arr_group_ban['do']-time()),'Ви заблоковані адміністрацією спільноти до <b>'.date('d', $arr_group_ban['do']).' '.hb(date('m', $arr_group_ban['do'])).' '.date('H:i', $arr_group_ban['do']).'</b>'.(!empty($arr_group_ban['text'])?'<br/>Причина: <b>'.$arr_group_ban['text'].'</b>':'')));
}
if (!empty($user_id)) require_once 'handler/group_user.php';
echo '<div class="profil"'.(!empty($arr_group['cover'])? ' style="background: url('.URL.'/files/groups/covers/'.$arr_group['cover'].') center repeat-x; background-size: auto 100%;"':'').'>
'.(empty($arr_group['avatar'])?'<a href="'.URL.'/avatars/?id='.$arr_group['id'].'" onclick="Page.Go(this.href); return false"><img class="profil_avatar" style="background: rgba(0,0,0,0.6); width: 150px;" src="'.URL.'/design/img/noavatar.png"/></a>':'<a href="'.URL.'/groups/avatars/preview.php?fname='.$arr_group['avatar'].'" onclick="Page.Go(this.href); return false"><img class="profil_avatar" src="'.URL.'/files/groups/avatars/'.$id.'/mini/'.$arr_group['avatar'].'"/></a>').'
<div class="profil_name"><h2>'.$arr_group['name'].' </h2></div>
</div><div class="profil_button"><center>';
echo ''.(!empty($arr_group['status'])?'<div class="status">'.smiles($arr_group['status']).'</div>':'').'';
if (!empty($user_id) && $user_id != $arr_group['user_id'] && !in_array($user_id, explode("||", substr($arr_group['users'], 1, -1)))) echo '<a class="button2" style="padding: 6px;border-radius: 3px;" href="'.URL.'/groups/?id='.$id.'&group=in" onclick="Page.Go(this.href); return false">'.lang('Вступить в сообщество','Вступити в спільноту').'</a>';
else if (!empty($user_id) && $user_id != $arr_group['user_id'] && in_array($user_id, explode("||", substr($arr_group['users'], 1, -1)))) echo '<a class="button2" id="bg_orange" style="padding: 6px;border-radius: 3px;" href="'.URL.'/groups/?id='.$id.'&group=out" onclick="Page.Go(this.href); return false">'.lang('Покинуть сообщество','Покинути спільноту').'</a>';
echo '</center>
</div><div class="block3">';
if (!empty($arr_group['city']))
{
$array = mysql_fetch_array(mysql_query("SELECT * FROM `region` WHERE `id` = '".$arr_group['region']."' LIMIT 1"));
echo '<font class="time">Місто:</font> '.$arr_group['city'].' ('.lang($array['ru_name'],$array['ua_name']).' обл.)<br/>';
}
echo (!empty($arr_group['url'])?'<font class="time">Веб-сайт:</font> <a href="'.$arr_group['url'].'">'.$arr_group['url'].'</a><br/>':'').'
'.(!empty($arr_group['about'])?'<br/>'.smiles(cut($arr_group['about'],URL.'/groups/info.php?id='.$id)):'').'
</div>
<div class="panel">
'.($arr_group['access_forum']!=2?'<a href="'.URL.'/groups/forum/?id='.$id.'" onclick="Page.Go(this.href); return false">'.lang('Обсуждения','Обговорення').'<b>'.$arr_group['count_forum'].'</b></a>':'').'
<a href="'.URL.'/groups/users.php?id='.$id.'" onclick="Page.Go(this.href); return false">'.lang('Участники','Учасники').'<b>'.$arr_group['count_users'].'</b></a>
<a href="'.URL.'/groups/users_adm.php?id='.$id.'" onclick="Page.Go(this.href); return false">'.lang('Администрация','Адміністрація').'<b>'.count(explode("||", substr($arr_group['admins'], 1, -1))).'</b></a>';
if (!empty($user_id) && in_array($user_id, explode("||", substr($arr_group['admins'], 1, -1)))) echo '<a href="'.URL.'/groups/adm/?id='.$id.'" onclick="Page.Go(this.href); return false">'.lang('Управление сообществом','Керування спільнотою').'</a>';
echo '</div>';
if ($arr_group['type'] == 1 && !in_array($user_id, explode("||", substr($arr_group['users'], 1, -1)))) {echo err(lang('Сообщество доступно только для участников','Спільнота доступна тільки для учасників')); require_once '../incfiles/foot.php';exit;}
$sql = DB::$dbs->query("SELECT * FROM groups_shop_goods WHERE `group_id` = ? ORDER BY `time` DESC LIMIT 4", array($id));
while($post = $sql -> fetch())
{
$g_info = DB::$dbs->queryFetch("SELECT * FROM groups_shop_file WHERE `fid` = ? LIMIT 1 ",array($post['id']));
if ($g_info)$img = ''.URL.'/files/shop/photos/'.$g_info['url'].'';
else $img = ''.URL.'/design/img/no-image-300x300-300x220.png';
echo '<div class="shop_m"><a href="'.URL.'/groups/shop/view.php?id='.$id.'&gid='.$post['id'].'" onclick="Page.Go(this.href); return false;"><div class="shop_block_m"><img src="'.$img.'"/><div class="shop_title_m">'.$post['name'].' <br />'.lang('Цена','Ціна').': '.$post['price'].' '.$post['price_v'].'</div></div></a></div>';
}
echo '<div class="clear"></div>';
echo '<div class="panel">';
echo '<a href="'.URL.'/groups/shop.php?id='.$id.'" onclick="Page.Go(this.href); return false">'.lang('Магазин','Магазин').'<b>'.$shop.'</b></a>';
echo '</div>';
echo '<div class="title"><div class="right">'.$arr_group['count_wall'].'</div>'.lang('Стена','Стіна').'</div>';
if (!empty($user_id) && $arr_group['access_wall'] == 0 || !empty($user_id) && $arr_group['access_wall'] == 1 && in_array($user_id, explode("||", substr($arr_group['users'], 1, -1))) || !empty($user_id) && $arr_group['access_wall'] == 2 && in_array($user_id, explode("||", substr($arr_group['admins'], 1, -1))) || !empty($user_id) && $arr_group['access_wall'] == 3 && in_array($user_id, explode("||", substr($arr_group['admins'], 1, -1))))
{
if (!in_array($user_id, explode("||", substr($arr_group['banlist'], 1, -1))))
{
require_once 'wall/handler/del_post.php';
require_once 'wall/handler/wall.php';
}
if ($site_version == 'default')
{
?>
<script type="text/javascript">
$(function(){
$('#form').on('submit', function(e){
e.preventDefault();
var $that = $(this),
formData = new FormData($that.get(0));
$.ajax({
url: $that.attr('action'),
type: $that.attr('method'),
contentType: false,
processData: false,
data: formData,
success: function(response){
if(response){
$('#content_wall').load($that.attr('action')+ '#content_wall .wall');
$('#textarea').val('');
$("#cache_photos").html('');
$("#cache_audio").html('');
}
}
});
});
});
$('input:file').remove();
$(document).ready(function() {
new AjaxUpload('upload', {
action: "/groups/wall/upload.php?from=<?echo $id;?>",
name: "file",
data: {ajax: "yes"},
onSubmit: function(file, ext) {
if(! (ext && /^(jpg|gif|png|jpeg)$/.test(ext))) {
return false;
}
$('#cache_photos').append('<img id="preview_loading" src="/design/img/preview_loading.gif" style="width:48px;height:48px;"/>');
},
onComplete: function(file, res) {
$('#preview_loading').remove();
if(res)
$("#cache_photos").append(res);
}
});
});
</script>
<?
}
$arr_wall_cache = false;
if (mysql_result(mysql_query("SELECT COUNT(`id`) FROM `wall_cache` WHERE `user_id` = '".$user_id."' LIMIT 1"),0) == true) $arr_wall_cache = mysql_fetch_array(mysql_query("SELECT * FROM `wall_cache` WHERE `user_id` = '".$user_id."' LIMIT 1"));
echo '<div class="block2">
<form id="form" action="'.URL.'/groups/?id='.$id.'" method="post">
<textarea id="textarea" class="input" name="wall_post" rows="4"></textarea>
<p><div id="cache_photos">';
if ($arr_wall_cache == true && !empty($arr_wall_cache['photos']))
{
$q = explode("||", substr($arr_wall_cache['photos'], 1, -1));
$count = count($q);
for ($i = 0; $i < $count; $i++)
{
echo '<a id="'.($i+1).'" class="del_cache" href="'.URL.'/groups/wall/upload.php?del_photo='.$q[$i].'&from='.$id.'" onclick="FormContent.DelCache(this.id,this.href); return false"><img class="preview_icons" src="'.URL.'/files/wall/'.$user_id.'/photos/icons/'.$q[$i].'"/></a>';
}
}
echo '</div></p><div id="cache_audio">';
if ($arr_wall_cache == true && !empty($arr_wall_cache['audio']))
{
$q = explode("||", substr($arr_wall_cache['audio'], 1, -1));
$count = count($q);
for ($i = 0; $i < $count; $i++)
{
echo '<div id="'.($i+1).'"><p>';
echo track($q[$i]);
echo ' <a id="'.($i+1).'" href="'.URL.'/groups/wall/upload.php?del_audio='.$q[$i].'&from='.$id.'" onclick="FormContent.DelCache(this.id,this.href); return false"> <img src="'.URL.'/design/img/closed.png"/></a>
</p></div>';
}
}
echo '</div>';
if ($arr_wall_cache == true && !empty($arr_wall_cache['video']))
{
$q = explode("||", substr($arr_wall_cache['video'], 1, -1));
$count = count($q);
for ($i = 0; $i < $count; $i++)
{
$arr_video = mysql_fetch_array(mysql_query("SELECT * FROM `video` WHERE `id` = '".($q[$i])."' LIMIT 1"));
echo '<div id="'.($i+1).'"><p>';
//echo track($q[$i]);
if($arr_video['type']==0 || $arr_video['type']==2)
{
$img =''.URL.''.$arr_video['img'].'';
}
elseif($arr_video['type']==1)
{
$img ='https://i.ytimg.com/vi/'.$arr_video['file'].'/mqdefault.jpg';
}
echo '<div class="video_mini"><div class="video_block_mini"><img src="'.$img.'"/></div></div>';
echo ' <a id="'.($i+1).'" href="'.URL.'/groups/wall/upload.php?del_video='.$q[$i].'&from='.$id.'" onclick="FormContent.DelCache(this.id,this.href); return false"> <img src="'.URL.'/design/img/closed.png"/><div class ="clear"></div></a>
</p></div>';
}
}
echo '<input type="hidden" name="form_wall" value="1"/>
<input class="button2" type="submit" value="'.lang('Написать','Написати').'">
<div class="button3 for_pc" id="upload" style="float: right; cursor: pointer;"><img src="'.URL.'/design/img/photo.png"/></div>
<a class="button3" href="'.URL.'/ajax/smiles.php" onclick="FormContent.Smiles(this.href); return false"><img src="'.URL.'/design/img/smile.png"/></a>
<a class="button3" href="'.URL.'/ajax/bbcode.php" onclick="FormContent.Smiles(this.href); return false"><img src="'.URL.'/design/bb/seo-web-code-icon.png"/></a>
<a class="button3" href="'.URL.'/groups/wall/upload.php?from='.$id.'" onclick="Page.Go(this.href); return false"><img src="'.URL.'/design/img/scrp.png"/></a>';
if (in_array($user_id, explode("||", substr($arr_group['admins'], 1, -1)))) echo '<div class"clear" style="margin-top:6px;"><a id="checkbox_on" href="" onclick="Form.Checkbox_off(); return false"><img style="margin:3px;" src="'.URL.'/design/img/checkbox_on.gif"/> '.lang('От имени сообщества','Від імені спільноти').'</a>
<a id="checkbox_off" href="" style="display:none;" onclick="Form.Checkbox_on('from_group'); return false"><img style="margin:3px;" src="'.URL.'/design/img/checkbox_off.gif"/> '.lang('От имени сообщества','Від імені спільноти').'</a></div>
<div id="checkbox"><input type="hidden" name="from_group" value="1"/></div>';
echo '</form>
</div><div id="form_content"></div>';
}
else if (!empty($user_id) && $arr_group['access_wall'] == 3 && in_array($user_id, explode("||", substr($arr_group['users'], 1, -1))))
{
echo '<div class="block"><a class="button_a" href="'.URL.'/groups/wall/add.php?id='.$id.'" onclick="Page.Go(this.href); return false">'.lang('Предложить новость','Запропонувати новину').'</a></div>';
}
require_once 'wall/handler/index.php'; // Стіна
require_once '../incfiles/foot.php';
}
else go(URL);
?>