示例#1
0
文件: pcfuncs.php 项目: bianle/www2
function pc_del_member($link, $pc, $userid)
{
    global $currentuser;
    if (!$pc || !is_array($pc)) {
        return FALSE;
    }
    if (!pc_is_groupwork($pc)) {
        return FALSE;
    }
    $query = "DELETE FROM members WHERE uid = '" . $pc["UID"] . "' AND username = '******' LIMIT 1;";
    if (!mysql_query($query, $link)) {
        return FALSE;
    }
    $action = "DEL MEMBER: " . $userid;
    if (!pc_group_logs($link, $pc, $action)) {
        exit("群体BLOG LOG错误");
    }
    $title = $userid . " 由 " . $currentuser["userid"] . " 取消 " . $pc["USER"] . " 群体BLOG的权利";
    $content = "    欢迎下次再来 ";
    // post announcement
    //bbs_postarticle($pcconfig["APPBOARD"], preg_replace("/\\\(['|\"|\\\])/","$1",$title), preg_replace("/\\\(['|\"|\\\])/","$1",$content), 0 , 0 , 0 , 0);
    // post mail
    $lookupuser = array();
    if (bbs_getuser($userid, $lookupuser) != 0) {
        $userid = $lookupuser["userid"];
        bbs_postmail($userid, preg_replace("/\\\\(['|\"|\\\\])/", "\$1", $title), preg_replace("/\\\\(['|\"|\\\\])/", "\$1", $content), 0, 0);
    }
    return TRUE;
}
示例#2
0
    }
}
$title = trim(@$_POST["title"]);
if (!$title) {
    $title = '无主题';
}
$sig = intval(@$_POST['signature']);
//签名档
$backup = 0;
if (isset($_POST['backup'])) {
    $backup = intval($_POST['backup']);
}
if ($mailfile == "") {
    $ret = bbs_postmail($incept, $title, @$_POST["text"], $sig, $backup);
} else {
    $ret = bbs_postmail($maildir, $mailfile, $num, $title, @$_POST["text"], $sig, $backup);
}
if ($ret < 0) {
    switch ($ret) {
        case -1:
        case -2:
            html_error_quit("无法创建文件");
            break;
        case -3:
            html_error_quit($incept . " 拒收您的邮件");
            break;
        case -4:
            html_error_quit($incept . " 的信箱已满或者不能收信");
            break;
        case -5:
            html_error_quit("两次发文/信间隔过密,请休息几秒再试!");
示例#3
0
文件: atomic.php 项目: bianle/www2
function atomic_mailpost()
{
    global $currentuser;
    atomic_mail_header();
    if (!bbs_can_send_mail()) {
        atomic_error("您不能发送信件");
    }
    $num = isset($_GET["num"]) ? @intval($_GET["num"]) : 0;
    $mail_fullpath = bbs_setmailfile($currentuser["userid"], ".DIR");
    if ($num > 0) {
        $articles = array();
        if (bbs_get_records_from_num($mail_fullpath, $num - 1, $articles)) {
            $title = $articles[0]["TITLE"];
            $receiver = $articles[0]["OWNER"];
            $shortfilename = $articles[0]["FILENAME"];
            $filename = bbs_setmailfile($currentuser["userid"], $shortfilename);
        } else {
            atomic_error("错误的参数");
        }
    }
    if (isset($_GET["post"])) {
        $title = atomic_get_input(trim(@$_POST["title"]));
        if (!$title) {
            $title = '无主题';
        }
        $content = atomic_get_input(@$_POST["text"]);
        $sig = $currentuser["signature"];
        $backup = bbs_is_save2sent() != 0;
        if ($num > 0) {
            $ret = bbs_postmail($mail_fullpath, $shortfilename, $num - 1, $title, $content, $sig, $backup);
        } else {
            $incept = trim(@$_POST['userid']);
            if (!$incept) {
                atomic_error("请输入收件人ID");
            }
            $lookupuser = array();
            if (!bbs_getuser($incept, $lookupuser)) {
                atomic_error("错误的收件人ID");
            }
            $incept = $lookupuser['userid'];
            if (!strcasecmp($incept, 'guest')) {
                atomic_error("不能发信给guest");
            }
            if (!bbs_sufficient_score_to_sendmail($incept)) {
                atomic_error("积分不足,不能发信给" . $incept);
            }
            $ret = bbs_postmail($incept, $title, $content, $sig, $backup);
        }
        if ($ret < 0) {
            switch ($ret) {
                case -1:
                case -2:
                    atomic_error("无法创建文件");
                    break;
                case -3:
                    atomic_error($incept . " 拒收您的邮件");
                    break;
                case -4:
                    atomic_error($incept . " 的信箱已满");
                    break;
                case -5:
                    atomic_error("两次发文/信间隔过密,请休息几秒再试!");
                    break;
                case -6:
                    atomic_error("添加邮件列表出错");
                    break;
                case -7:
                    atomic_error("邮件发送成功,但未能保存到发件箱");
                    break;
                case -8:
                    atomic_error("找不到所回复的原信。");
                    break;
                case -100:
                    atomic_error("错误的收件人ID");
                    break;
                default:
                    atomic_error("系统错误,请联系管理员");
            }
        }
        if ($num > 0) {
            $url = "?act=mailread&num=" . $num;
            echo "发送成功!本页面将在3秒后自动返回<a href='{$url}'>原信件</a><meta http-equiv='refresh' content='3; url=" . $url . "'/>";
        } else {
            $url = "?act=mail";
            echo "发送成功!本页面将在3秒后自动返回<a href='{$url}'>信件列表</a><meta http-equiv='refresh' content='3; url=" . $url . "'/>";
        }
        atomic_footer();
        return;
    }
    if ($num > 0) {
        if (!strncmp($title, "Re: ", 4)) {
            $nowtitle = $title;
        } else {
            $nowtitle = "Re: " . $title;
        }
    } else {
        $nowtitle = "";
    }
    $html = "<form action='?act=mailpost&num=" . $num . "&post=1' method='post'>";
    $html .= '标题: <input type="text" name="title" size="40" maxlength="100" value="' . ($nowtitle ? htmlspecialchars($nowtitle, ENT_QUOTES) . " " : "") . '"/><br/>';
    if ($num > 0) {
        $html .= "收件人: " . $receiver . "<br/>";
    } else {
        $html .= '收件人: <input type="text" name="userid"/><br/>';
    }
    $html .= '<textarea name="text" rows="20" cols="80" wrap="physical">';
    if ($num > 0) {
        $html .= "\n\n【 在 " . $receiver . " 的来信中提到: 】\n";
        $fp = fopen($filename, "r");
        if ($fp) {
            $lines = 0;
            for ($i = 0; $i < 4; $i++) {
                if (($buf = fgets($fp, 500)) == FALSE) {
                    break;
                }
            }
            while (1) {
                if (($buf = fgets($fp, 500)) == FALSE) {
                    break;
                }
                if (strncmp($buf, ": 【", 4) == 0) {
                    continue;
                }
                if (strncmp($buf, ": : ", 4) == 0) {
                    continue;
                }
                if (strncmp($buf, "--\n", 3) == 0) {
                    break;
                }
                if (strncmp($buf, '\\n', 1) == 0) {
                    continue;
                }
                if (++$lines > 10) {
                    $html .= ": ...................\n";
                    break;
                }
                $html .= ": " . htmlspecialchars($buf);
            }
            fclose($fp);
        }
    }
    $html .= '</textarea><br/><input type="submit" value="发送" /></form>';
    echo $html;
    atomic_footer();
}
示例#4
0
function pc_add_users($link, $userid, $corpusname, $manual, $blogtype = "", $groupmanager = "")
{
    global $pcconfig, $currentuser, $bbsman_modes;
    if (!$userid || !$corpusname) {
        return -1;
    }
    if (!$blogtype) {
        $blogtype = "normal";
    }
    if ($blogtype == "normal") {
        $lookupuser = array();
        if (bbs_getuser($userid, $lookupuser) == 0) {
            return -2;
        }
        $userid = $lookupuser["userid"];
    } else {
        if (!$pcconfig["TYPES"][$blogtype]) {
            return -3;
        }
        $userid = $pcconfig["TYPES"][$blogtype] . '.' . $userid;
        if (!$groupmanager) {
            return -4;
        }
        $lookupuser = array();
        if (bbs_getuser($groupmanager, $lookupuser) == 0) {
            return -4;
        }
        $groupmanager = $lookupuser["userid"];
    }
    //更新申请表
    if ($manual) {
        $query = "INSERT INTO `newapply` ( `naid` , `username` , `appname` , `appself` , `appdirect` , `hostname` , `apptime` , `manager` , `management` ) " . "VALUES ('', '" . addslashes($userid) . "', '" . addslashes($corpusname) . "', '', '', '" . addslashes($_SERVER["REMOTE_ADDR"]) . "', NOW( ) , '" . addslashes($currentuser["userid"]) . "' , '0');";
    } else {
        $query = "UPDATE newapply SET apptime = apptime ,manager = '" . addslashes($currentuser["userid"]) . "',management = '0' WHERE username = '******'";
    }
    // ORDER BY naid DESC LIMIT 1 ;";
    if (!mysql_query($query, $link)) {
        $errstr = "MySQL Error: " . mysql_error($link);
        pc_db_close($link);
        exit($errstr);
    }
    if (pc_load_infor($link, $userid)) {
        return -5;
    }
    if ($manual) {
        $query = "SELECT username FROM newapply WHERE management != 1 AND management != 3  AND management != 0 AND username = '******' LIMIT 0 , 1;";
        $result = mysql_query($query, $link);
        if ($rows = mysql_fetch_array($result)) {
            return -6;
        }
    }
    //分配个人空间
    if ($pcconfig["USERFILES"]) {
        $userfile_limit = $pcconfig["USERFILESLIMIT"];
        $userfile_num_limit = $pcconfig["USERFILESNUMLIMIT"];
    } else {
        $userfile_limit = $userfile_num_limit = 0;
    }
    //添加用户
    $query = "INSERT INTO `users` ( `uid` , `username` , `corpusname` , `description` , `theme` , `nodelimit` , `dirlimit` , `createtime` , `style` , `backimage` , `visitcount` , `nodescount` , `logoimage` , `modifytime` , `links` , `htmleditor` , `indexnodechars` , `indexnodes` , `useremail` , `favmode` , `updatetime` , `userinfor` , `pctype` ,`defaulttopic`,`userfile`,`filelimit`) " . "VALUES ('', '" . addslashes($userid) . "', '" . addslashes($corpusname) . "', '" . addslashes($corpusname) . "' , 'others', '300', '300', NOW( ) , '0', '' , '0', '0', '' , NOW( ) , '', '1', '600', '5', '', '0', NOW( ) , '' , '0' , '其他类别' , '" . $userfile_limit . "','" . $userfile_num_limit . "');";
    if (!mysql_query($query, $link)) {
        $errstr = "MySQL Error: " . mysql_error($link);
        pc_db_close($link);
        exit($errstr);
    }
    //log一下
    if ($blogtype != "normal") {
        $action = $groupmanager . " 申请建立群体Blog:" . $userid . "(www)";
        pc_logs($link, $action, "", $userid);
    }
    $action = $currentuser["userid"] . " 通过 " . $userid . " 的BLOG申请(www)";
    pc_logs($link, $action, "", $userid);
    //发布公告
    if ($blogtype == "normal") {
        bbs_user_setflag($userid, BBS_PCORP_FLAG, 1);
        $annTitle = "[公告] 批准 " . $userid . " 的 Blog 申请";
        $annBody = "\n\n        根据用户 " . $userid . " 申请,经审核、讨论后决定开通该用户\n" . "    Blog ,Blog 名称“" . $corpusname . "”。\n\n" . "        Blog 大部分功能提供在web 模式下,Blog 名称、描述、\n" . "    分类等属性请用户在web 登录后自行修改。\n\n";
    } else {
        $annTitle = "[公告] 开设 " . $userid . " 群体Blog";
        $annBody = "\n\n        根据用户 " . $groupmanager . " 申请,经审核、讨论后决定开设\n" . "    " . $userid . " 群体Blog,Blog 名称“" . $corpusname . "”。\n\n" . "        Blog 大部分功能提供在web 模式下,Blog 名称、描述、\n" . "    分类等属性请群体Blog管理员在web 登录后自行修改。\n\n";
    }
    $ret = bbs_postarticle($pcconfig["APPBOARD"], preg_replace("/\\\\(['|\"|\\\\])/", "\$1", $annTitle), preg_replace("/\\\\(['|\"|\\\\])/", "\$1", $annBody), 0, 0, 0, 0);
    if ($ret != 0) {
        return -7;
    }
    //发信件给用户
    $ret = bbs_postmail($blogtype == "normal" ? $userid : $groupmanager, preg_replace("/\\\\(['|\"|\\\\])/", "\$1", $annTitle), preg_replace("/\\\\(['|\"|\\\\])/", "\$1", $annBody), 0, 0);
    if ($ret < 0) {
        return -8;
    }
    //标记公告
    //bbs_bmmanage($pcconfig["APPBOARD"],$ret,$bbsman_modes["MARK"],0);
    if ($manual && $blogtype != "normal") {
        $pcc = pc_load_infor($link, $userid);
        if (!$pcc) {
            return -9;
        }
        pc_convertto_group($link, $pcc);
        pc_add_member($link, $pcc, $groupmanager);
    }
    return 0;
}
示例#5
0
文件: mail.php 项目: tilitala/nForum
 public function reply($title, $content, $sig, $bak)
 {
     $code = null;
     $ret = bbs_postmail($this->_box->getFullPath(), $this->FILENAME, $this->num, $title, $content, $sig, $bak);
     switch ($ret) {
         case -1:
             $code = ECode::$SYS_NOTMPFILE;
             break;
         case -2:
         case -6:
         case -7:
             $code = ECode::$MAIL_ERROR;
             break;
         case -3:
             $code = ECode::$MAIL_REJECT;
             break;
         case -4:
             $code = ECode::$MAIL_FULL;
             break;
         case -5:
             $code = ECode::$POST_FREQUENT;
             break;
         case -8:
             $code = ECode::$MAIL_RENUMERROR;
             break;
         case -9:
             $code = ECode::$MAIL_NOPERM;
             break;
         case -100:
             $code = ECode::$MAIL_NOID;
             break;
     }
     if (!is_null($code)) {
         throw new MailSendException($code);
     }
 }