|
- <?php
- /**
- * 发布分类文档模型
- *
- * @version $id:archives_sg_add.php 13:52 2010年7月9日 tianya $
- * @package DedeBIZ.User
- * @copyright Copyright (c) 2022 DedeBIZ.COM
- * @license GNU GPL v2 (https://www.dedebiz.com/license)
- * @link https://www.dedebiz.com
- */
- require_once(dirname(__FILE__)."/config.php");
- CheckRank(0, 0);//禁止游客操作
- require_once(DEDEINC."/dedetag.class.php");
- require_once(DEDEINC."/userlogin.class.php");
- require_once(DEDEINC."/customfields.func.php");
- require_once(dirname(__FILE__)."/inc/inc_catalog_options.php");
- require_once(dirname(__FILE__)."/inc/inc_archives_functions.php");
- $channelid = isset($channelid) && is_numeric($channelid) ? $channelid : 1;
- $typeid = isset($typeid) && is_numeric($typeid) ? $typeid : 0;
- $mtypesid = isset($mtypesid) && is_numeric($mtypesid) ? $mtypesid : 0;
- $menutype = 'content';
- if ($cfg_ml->IsSendLimited()) {
- ShowMsg("投稿失败,每日投稿次数{$cfg_ml->M_SendMax}次,剩余0次,需要增加次数,请联系网站管理员", "index.php", "0", 3000);
- exit();
- }
- if (empty($dopost)) {
- $cInfos = $dsql->GetOne("SELECT * FROM `#@__channeltype` WHERE id='$channelid';");
- if (!is_array($cInfos)) {
- ShowMsg('模型参数不正确', '-1');
- exit();
- }
- //检查会员等级和类型限制
- if ($cInfos['sendrank'] > $cfg_ml->M_Rank) {
- $row = $dsql->GetOne("SELECT membername FROM `#@__arcrank` WHERE `rank`='".$cInfos['sendrank']."' ");
- ShowMsg("需要".$row['membername']."才能在这个栏目发布文档", "-1", "0", 3000);
- exit();
- }
- if ($cInfos['usertype'] != '' && $cInfos['usertype'] != $cfg_ml->M_MbType) {
- ShowMsg("需要".$cInfos['usertype']."帐号才能在这个栏目发布文档", "-1", "0", 3000);
- exit();
- }
- include(DEDEMEMBER."/templets/archives_sg_add.htm");
- exit();
- } else if ($dopost == 'save') {
- include_once(DEDEINC."/image.func.php");
- include_once(DEDEINC."/libraries/webwindow.class.php");
- //游客需要校验验证码
- if ($cfg_ml->M_ID === 0) {
- $svali = GetCkVdValue();
- if (strtolower($vdcode) != $svali || $svali == '') {
- ResetVdValue();
- ShowMsg('验证码不正确', '-1');
- exit();
- }
- }
- //校验CSRF
- CheckCSRF();
- $flag = '';
- $autokey = $remote = $dellink = $autolitpic = 0;
- $userip = GetIP();
- if ($typeid == 0) {
- ShowMsg('您还没选择栏目,请选择发布文档栏目', '-1');
- exit();
- }
- $query = "SELECT tp.ispart,tp.channeltype,tp.issend,ch.issend AS cissend,ch.sendrank,ch.arcsta,ch.addtable,ch.fieldset,ch.usertype FROM `#@__arctype` tp LEFT JOIN `#@__channeltype` ch ON ch.id=tp.channeltype WHERE tp.id='$typeid' ";
- $cInfos = $dsql->GetOne($query);
- //检测栏目是否有投稿权限
- if ($cInfos['issend'] != 1 || $cInfos['ispart'] != 0 || $cInfos['channeltype'] != $channelid || $cInfos['cissend'] != 1) {
- ShowMsg("您所选择的栏目不支持投稿", "-1");
- exit();
- }
- //检查栏目设定的投稿许可权限
- if ($cInfos['sendrank'] > $cfg_ml->M_Rank) {
- $row = $dsql->GetOne("Select membername From #@__arcrank where `rank`='".$cInfos['sendrank']."' ");
- ShowMsg("需要".$row['membername']."才能在这个栏目发布文档", "-1", "0", 3000);
- exit();
- }
- if ($cInfos['usertype'] != '' && $cInfos['usertype'] != $cfg_ml->M_MbType) {
- ShowMsg("需要".$cInfos['usertype']."才能在这个栏目发布文档", "-1", "0", 3000);
- exit();
- }
- //文档的默认状态
- if ($cInfos['arcsta'] == 0) {
- $arcrank = 0;
- } else if ($cInfos['arcsta'] == 1) {
- $arcrank = 0;
- } else {
- $arcrank = -1;
- }
- //对保存的文档进行处理
- $sortrank = $senddate = $pubdate = time();
- $title = cn_substrR(HtmlReplace($title, 1), $cfg_title_maxlen);
- $mid = $cfg_ml->M_ID;
- $description = empty($description) ? "" : HtmlReplace($description, -1);
- //分析处理附加表数据
- $inadd_f = $inadd_v = '';
- if (!empty($dede_addonfields)) {
- $addonfields = explode(';', $dede_addonfields);
- $inadd_f = '';
- $inadd_v = '';
- if (is_array($addonfields)) {
- foreach ($addonfields as $v) {
- if ($v == '') {
- continue;
- }
- $vs = explode(',', $v);
- if (!isset(${$vs[0]})) {
- ${$vs[0]} = '';
- }
- //自动摘要和远程图片本地化
- if ($vs[1] == 'htmltext' || $vs[1] == 'textdata') {
- ${$vs[0]} = AnalyseHtmlBody(${$vs[0]}, $description, $vs[1]);
- }
- ${$vs[0]} = GetFieldValueA(${$vs[0]}, $vs[1], 0);
- $inadd_f .= ',`'.$vs[0].'`';
- $inadd_v .= " ,'".${$vs[0]}."' ";
- }
- }
- //这里对前台提交的附加数据进行一次校验
- $fontiterm = PrintAutoFieldsAdd(stripslashes($cInfos['fieldset']), 'autofield', FALSE);
- if ($fontiterm != str_replace('`', '', $inadd_f)) {
- ShowMsg("提交的信息有错误,请修改重新提交", "-1");
- exit();
- }
- }
- //生成文档id
- $arcID = GetIndexKey($arcrank, $typeid, $sortrank, $channelid, $senddate, $mid);
- if (empty($arcID)) {
- ShowMsg("获取主键失败,无法进行后续操作", "-1");
- exit();
- }
- //保存到附加表
- $addtable = trim($cInfos['addtable']);
- if (empty($addtable)) {
- $dsql->ExecuteNoneQuery("DELETE FROM `#@__arctiny` WHERE id='$arcID'");
- ShowMsg("没找到模型{$channelid}主表信息,无法完成操作", "javascript:;");
- exit();
- } else {
- $litpic = isset($litpic)? HtmlReplace($litpic, 1) : '';
- $inquery = "INSERT INTO `{$addtable}` (aid,typeid,arcrank,mid,channel,title,senddate,litpic,userip{$inadd_f}) VALUES ('$arcID','$typeid','$arcrank','$mid','$channelid','$title','$senddate','$litpic','$userip'{$inadd_v})";
- if (!$dsql->ExecuteNoneQuery($inquery)) {
- $gerr = $dsql->GetError();
- $dsql->ExecuteNoneQuery("DELETE FROM `#@__arctiny` WHERE id='$arcID'");
- ShowMsg("数据保存到数据库附加表出错,请联系管理员", "javascript:;");
- exit();
- }
- }
- //增加积分
- $dsql->ExecuteNoneQuery("UPDATE `#@__member` SET scores=scores+{$cfg_sendarc_scores} WHERE mid='".$cfg_ml->M_ID."' ;");
- //生成网页
- $artUrl = MakeArt($arcID, true);
- if ($artUrl == '') $artUrl = $cfg_phpurl."/view.php?aid=$arcID";
- ClearMyAddon($arcID, $title);
- //返回成功信息
- $msg = "<a href='$artUrl' target='_blank' class='btn btn-success btn-sm'>浏览文档</a><a href='archives_sg_add.php?channelid=$channelid' class='btn btn-success btn-sm'>发布文档</a><a href='archives_sg_edit.php?channelid=$channelid&aid=$arcID' class='btn btn-success btn-sm'>修改文档</a><a href='content_sg_list.php?channelid={$channelid}' class='btn btn-success btn-sm'>返回文档列表</a>";
- $wintitle = "成功发布分类文档";
- $win = new WebWindow();
- $win->AddMsgItem($msg);
- $winform = $win->GetWindow("hand", false);
- $win->Display(DEDEMEMBER."/templets/win_templet.htm");
- }
- ?>
|