подключать в common.php. сабмитить официально не буду - там и без меня модов посложнее хватает, мне же нужен был простой как валенок мод
include/atom.php
читать дальше
<?
function getAtom()
{
global $db;
$lastvisit=0;
if(!isset($_SERVER['PHP_AUTH_USER'])&&!isset($_SERVER['PHP_AUTH_PW']))
{
header( "WWW-authenticate: basic realm=\"phpBB Atom\"");
header( "HTTP/1.0 401 Unauthorized");
$user='';
$pass='';
}
else
{
$user=$_SERVER['PHP_AUTH_USER'];
$pass=$_SERVER['PHP_AUTH_PW'];
}
$result=$db->sql_query('SELECT *,user_id,user_lastvisit FROM '.USERS_TABLE.' WHERE username="'.$user.'" AND user_password=MD5("'.$pass.'")');
if($result)
{
$row=$db->sql_fetchrow($result);
$user=(int)$row['user_id'];
$lastvisit=(int)$row['user_lastvisit'];
$userdata=session_begin($user,'',0);
}
else $userdata=NULL;
$rr=auth(AUTH_ALL,0,$userdata);
$res2=$db->sql_query('SELECT t.forum_id,t.topic_id,u.username,p.post_time,t.topic_title,t.topic_last_post_id,pt.post_text FROM '.POSTS_TABLE.' p,'.TOPICS_TABLE.' t,'.POSTS_TEXT_TABLE.' pt,'.USERS_TABLE.' u WHERE p.post_id=pt.post_id AND p.topic_id=t.topic_id AND u.user_id=p.poster_id ORDER BY post_time ASC');
while($row2=$db->sql_fetchrow($res2))
{
if($rr[$row2['forum_id']]['auth_view']==1 && $rr[$row2['forum_id']]['auth_read']==1)
{
if(!isset($out['lastupdated'])) $out['lastupdated']=$row2['post_time'];
$out['topics'][$row2['topic_id']]['updated']=$row2['post_time'];
$out['topics'][$row2['topic_id']]['title']=$row2['topic_title'];
$out['topics'][$row2['topic_id']]['author']=$row2['username'];
$out['topics'][$row2['topic_id']]['lastpost']=$row2['topic_last_post_id'];
$out['topics'][$row2['topic_id']]['post']=html_entity_decode($row2['post_text'],ENT_QUOTES,"UTF-8");
}
}
$res2=$db->sql_query('SELECT config_name,config_value FROM '.CONFIG_TABLE.' WHERE config_name="server_name" OR config_name="sitename" OR config_name="site_desc" or config_name="sсript_path" or config_name="board_email"');
while($row2=$db->sql_fetchrow($res2))
$out[$row2['config_name']]=$row2['config_value'];
if($result)
{
session_end($userdata['session_id'],$user);
$db->sql_query('UPDATE '.USERS_TABLE.' SET user_lastvisit="'.$lastvisit.'" WHERE user_id="'.$row['user_id'].'"');
}
return $out;
}
if($_GET['feed']=='atom')
{
$res=getAtom();
echo '<?xml version="1.0"?>';
?>
<feed xmlns="www.w3.org/2005/Atom">
<title><?=$res['sitename'];?></title>
<subtitle><?=$res['site_desc'];?></subtitle>
<link href="http://<?=$res['server_name'].$res['sсript_path'];?>"/>
<updated><?=date('Y-m-d\TH:i:s\Z',$res['lastupdated']);?></updated>
<id>tag:<?=$res['server_name'];?>,<?=date('Y',$res['lastupdated']);?>:3</id>
<link rel="alternate" type="text/html" href="http://<?=$res['server_name'].$res['sсript_path'];?>"/>
<link rel="self" type="application/atom+xml" href="http://<?=$res['server_name'].$res['sсript_path'];?>?feed=atom"/>
<?foreach($res['topics'] as $k=>$v) {?>
<entry>
<title><?=$v['title'];?></title>
<link href="http://<?=$res['server_name'].$res['sсript_path'];?>viewtopic.<?=$phpEx;?>?p=<?=$v['lastpost'];?>#<?=$v['lastpost'];?>"/>
<id>tag:<?=$res['server_name']?>,<?=date('Y',$res['lastupdated']);?>:<?=$v['lastpost'];?></id>
<author><name><?=$v['author'];?></name></author>
<updated><?=date('Y-m-d\TH:i:s\Z',$v['updated']);?></updated>
<content><![CDATA[<?=$v['post'];?>]]></content>
</entry><?}?>
</feed><? exit;}?>
function getAtom()
{
global $db;
$lastvisit=0;
if(!isset($_SERVER['PHP_AUTH_USER'])&&!isset($_SERVER['PHP_AUTH_PW']))
{
header( "WWW-authenticate: basic realm=\"phpBB Atom\"");
header( "HTTP/1.0 401 Unauthorized");
$user='';
$pass='';
}
else
{
$user=$_SERVER['PHP_AUTH_USER'];
$pass=$_SERVER['PHP_AUTH_PW'];
}
$result=$db->sql_query('SELECT *,user_id,user_lastvisit FROM '.USERS_TABLE.' WHERE username="'.$user.'" AND user_password=MD5("'.$pass.'")');
if($result)
{
$row=$db->sql_fetchrow($result);
$user=(int)$row['user_id'];
$lastvisit=(int)$row['user_lastvisit'];
$userdata=session_begin($user,'',0);
}
else $userdata=NULL;
$rr=auth(AUTH_ALL,0,$userdata);
$res2=$db->sql_query('SELECT t.forum_id,t.topic_id,u.username,p.post_time,t.topic_title,t.topic_last_post_id,pt.post_text FROM '.POSTS_TABLE.' p,'.TOPICS_TABLE.' t,'.POSTS_TEXT_TABLE.' pt,'.USERS_TABLE.' u WHERE p.post_id=pt.post_id AND p.topic_id=t.topic_id AND u.user_id=p.poster_id ORDER BY post_time ASC');
while($row2=$db->sql_fetchrow($res2))
{
if($rr[$row2['forum_id']]['auth_view']==1 && $rr[$row2['forum_id']]['auth_read']==1)
{
if(!isset($out['lastupdated'])) $out['lastupdated']=$row2['post_time'];
$out['topics'][$row2['topic_id']]['updated']=$row2['post_time'];
$out['topics'][$row2['topic_id']]['title']=$row2['topic_title'];
$out['topics'][$row2['topic_id']]['author']=$row2['username'];
$out['topics'][$row2['topic_id']]['lastpost']=$row2['topic_last_post_id'];
$out['topics'][$row2['topic_id']]['post']=html_entity_decode($row2['post_text'],ENT_QUOTES,"UTF-8");
}
}
$res2=$db->sql_query('SELECT config_name,config_value FROM '.CONFIG_TABLE.' WHERE config_name="server_name" OR config_name="sitename" OR config_name="site_desc" or config_name="sсript_path" or config_name="board_email"');
while($row2=$db->sql_fetchrow($res2))
$out[$row2['config_name']]=$row2['config_value'];
if($result)
{
session_end($userdata['session_id'],$user);
$db->sql_query('UPDATE '.USERS_TABLE.' SET user_lastvisit="'.$lastvisit.'" WHERE user_id="'.$row['user_id'].'"');
}
return $out;
}
if($_GET['feed']=='atom')
{
$res=getAtom();
echo '<?xml version="1.0"?>';
?>
<feed xmlns="www.w3.org/2005/Atom">
<title><?=$res['sitename'];?></title>
<subtitle><?=$res['site_desc'];?></subtitle>
<link href="http://<?=$res['server_name'].$res['sсript_path'];?>"/>
<updated><?=date('Y-m-d\TH:i:s\Z',$res['lastupdated']);?></updated>
<id>tag:<?=$res['server_name'];?>,<?=date('Y',$res['lastupdated']);?>:3</id>
<link rel="alternate" type="text/html" href="http://<?=$res['server_name'].$res['sсript_path'];?>"/>
<link rel="self" type="application/atom+xml" href="http://<?=$res['server_name'].$res['sсript_path'];?>?feed=atom"/>
<?foreach($res['topics'] as $k=>$v) {?>
<entry>
<title><?=$v['title'];?></title>
<link href="http://<?=$res['server_name'].$res['sсript_path'];?>viewtopic.<?=$phpEx;?>?p=<?=$v['lastpost'];?>#<?=$v['lastpost'];?>"/>
<id>tag:<?=$res['server_name']?>,<?=date('Y',$res['lastupdated']);?>:<?=$v['lastpost'];?></id>
<author><name><?=$v['author'];?></name></author>
<updated><?=date('Y-m-d\TH:i:s\Z',$v['updated']);?></updated>
<content><![CDATA[<?=$v['post'];?>]]></content>
</entry><?}?>
</feed><? exit;}?>