function pmSend($post, $suid = MEMBER_ID, $susername = MEMBER_NAME, $snickname = MEMBER_NICKNAME) { if (jaccess('pm', 'send', $suid) == false) { return 6; } $to_user_list = array(); $f_rets = filter($post['message']); if ($f_rets) { if ($f_rets['error']) { return $f_rets['msg']; } } $post['subject'] = jhtmlspecialchars(trim($post['subject'])); $p_to_user = $post['to_user']; if (empty($p_to_user)) { return 2; } $this->_process_content($post['message']); if ($post['message'] == '') { return 1; } $p_to_user = (array) $p_to_user; $nks = array(); foreach ($p_to_user as $tmps) { $tmps = (string) $tmps; if (false !== strpos($tmps, ',')) { $_tmps = explode(',', $tmps); foreach ($_tmps as $_tmp) { $nk = addslashes($_tmp); $nks[$nk] = $nk; } } else { $nk = addslashes($tmps); $nks[$nk] = $nk; } } $sql = "\r\n\t\tSELECT\r\n\t\t\t`uid`,`username`,`nickname`,`notice_pm`,`email`,`email_checked`,`newpm`,`at_new`,`event_new`,`fans_new`,`vote_new`,`qun_new`,`dig_new`,`channel_new`,`company_new`,`comment_new`,`user_notice_time`,`lastactivity`\r\n\t\tFROM\r\n\t\t\t" . TABLE_PREFIX . 'members' . "\r\n\t\tWHERE `nickname` IN (" . jimplode($nks) . ") ORDER BY `uid` limit 100"; $query = $this->DatabaseHandler->Query($sql); $to_uids = array(); while ($row = $query->GetRow()) { if ($suid == MEMBER_ID) { if (is_blacklist($suid, $row['uid'])) { return '你在' . $row['nickname'] . '的黑名单中,不被允许发私信'; } } $rets = jsg_role_check_allow('sendpm', $row['uid'], $suid); if ($rets && $rets['error']) { return $rets['error']; } else { $to_user_list[$row['uid']] = $row; $to_uids[$row['uid']] = $row['uid']; } } ios_push_msg($to_uids, '你有新消息:1条私信'); if ($to_user_list == false) { return 3; } $time = time(); foreach ($to_user_list as $to_user_id => $to_user_name) { $data = array("msgfrom" => $susername, "msgnickname" => $snickname, "msgfromid" => $suid, "msgto" => $to_user_name['username'], "tonickname" => $to_user_name['nickname'], "msgtoid" => $to_user_id, 'imageids' => $post['imageids'], 'attachids' => $post['attachids'], "subject" => $post['subject'], "message" => $post['message'], "new" => '1', "dateline" => $time); if ($post["save_to_outbox"]) { $data['folder'] = "outbox"; $msg = "消息已经保存草稿箱"; } $uids = ''; if ($suid > $to_user_id) { $uids = $to_user_id . "," . $suid; } else { $uids = $suid . "," . $to_user_id; } $plid = 0; if (!$msg) { $lastmessage = addslashes(serialize($data)); $plid = DB::result_first("select plid from " . TABLE_PREFIX . "pms_index where uids = '{$uids}'"); if ($plid == 0) { DB::query("insert into " . TABLE_PREFIX . "pms_index (uids) values('{$uids}')"); $plid = $this->DatabaseHandler->Insert_ID(); if (0 != $plid) { DB::query("insert into " . TABLE_PREFIX . "pms_list (plid,uid,pmnum,dateline,lastmessage) values('{$plid}','" . $suid . "',1,'{$time}','{$lastmessage}')"); if ($suid != $to_user_id) { DB::query("insert into " . TABLE_PREFIX . "pms_list (plid,uid,pmnum,dateline,lastmessage,is_new) values('{$plid}','{$to_user_id}',1,'{$time}','{$lastmessage}',1)"); } } } else { DB::query("update " . TABLE_PREFIX . "pms_list set pmnum = pmnum + 1,dateline = '{$time}',lastmessage = '{$lastmessage}',is_new = 1 where plid = '{$plid}' and uid = '{$to_user_id}' "); if ($suid != $to_user_id) { DB::query("update " . TABLE_PREFIX . "pms_list set pmnum = pmnum + 1,dateline = '{$time}',lastmessage = '{$lastmessage}',is_new = 0 where plid = '{$plid}' and uid = '{$suid}' "); } } } $data['plid'] = $plid; DB::insert('pms', $data); } #标记音乐和附件,使清缓存的时候不会把附件删除 if ($data['imageids']) { DB::query("update `" . TABLE_PREFIX . "topic_image` set `tid` = -1 where `id` in ({$data['imageids']})"); } if ($data['attachids']) { DB::query("update `" . TABLE_PREFIX . "topic_attach` set `tid` = -1 where `id` in ({$data['attachids']})"); } $num = $post["save_to_outbox"] ? 0 : 1; if ($num > 0) { $_tmps = array_keys($to_user_list); $to_user_id_list = array(); foreach ($_tmps as $_tmp) { $_tmp = (int) $_tmp; if ($_tmp > 0) { $to_user_id_list[$_tmp] = $_tmp; } } $this->UpdateNewMsgCount($num, $to_user_id_list); foreach ($to_user_list as $user_notice) { if ($GLOBALS['_J']['config']['sendmailday'] > 0) { jtable('mailqueue')->add($user_notice, 'notice_pm'); } if ($GLOBALS['_J']['config']['imjiqiren_enable'] && imjiqiren_init()) { imjiqiren_send_message($user_notice, 'm', $GLOBALS['_J']['config']); } if ($GLOBALS['_J']['config']['sms_enable'] && sms_init()) { sms_send_message($user_notice, 'm', $GLOBALS['_J']['config']); } } if ($GLOBALS['_J']['config']['extcredits_enable'] && $suid > 0) { update_credits_by_action('pm', $suid, count($to_user_list)); } } if (!$post['is_pm_to_admin_notice']) { $this->to_admin_notice($to_uids); } return 0; }
function Add($datas, $totid = 0, $imageid = 0, $attachid = 0, $from = 'web', $type = "first", $uid = 0, $item = '', $item_id = 0, $from_queue = false) { if ($GLOBALS['_J']['config']['wqueue_enabled'] && !$from_queue) { isset($datas['content']) && ($datas['content'] = base64_encode($datas['content'])); $wq_data = array('datas' => $datas, 'totid' => $totid, 'imageid' => $imageid, 'attachid' => $attachid, 'from' => $from, 'type' => $type, 'uid' => $uid ? $uid : (isset($datas['uid']) ? $datas['uid'] : MEMBER_ID), 'item' => $item ? $item : (isset($datas['item']) ? $datas['item'] : ''), 'item_id' => $item_id ? $item_id : (isset($datas['item_id']) ? $datas['item_id'] : 0)); $wq_ds = base64_encode(serialize($wq_data)); $wq_url = 'http:/' . '/' . $GLOBALS['_J']['config']['wqueue']['host'] . '/?name=' . $GLOBALS['_J']['config']['wqueue']['name'] . '&opt=put&auth=' . $GLOBALS['_J']['config']['wqueue']['auth'] . '&data=' . $wq_ds; $wq_r = dfopen($wq_url); if (strstr($wq_r, 'HTTPSQS_PUT_OK')) { return array(); } } elseif ($from_queue) { } if (is_array($datas) && count($datas)) { $ks = array('tid' => 1, 'uid' => 1, 'content' => 1, 'imageid' => 1, 'attachid' => 1, 'videoid' => 1, 'musicid' => 1, 'longtextid' => 1, 'totid' => 1, 'touid' => 1, 'dateline' => 1, 'from' => 1, 'type' => 1, 'item_id' => 1, 'item' => 1, 'postip' => 1, 'timestamp' => 1, 'managetype' => 1, 'checkfilter' => 1, 'verify' => 1, 'design' => 1, 'xiami_id' => 1, 'is_reward' => 1); foreach ($datas as $k => $v) { if (isset($ks[$k])) { ${$k} = $v; } } $pverify = $datas['pverify']; } else { $content = $datas; } $is_verify = $pverify || $GLOBALS['_J']['config']['verify'] ? true : false; $content = $this->_content_strip($content); $content_length = strlen($content); if ($content_length < 2) { return "内容不允许为空"; } if ($this->_len2 > 0 && $content_length > $this->_len2) { $content = cut_str($content, $this->_len2, ''); } if (!$checkfilter) { $f_rets = filter($content); if ($f_rets) { if ($f_rets['verify']) { $is_verify = true; } elseif ($f_rets['error']) { return $f_rets['msg']; } } } else { if ($is_verify && 'verify' == $verify && true === IN_JISHIGOU_ADMIN) { $is_verify = false; } } $totid = max(0, (int) $totid); $data = array(); if ($managetype) { $data['managetype'] = $managetype; } $is_new = 1; if ($tid) { $is_new = 0; $data['tid'] = $tid; } $parents = ''; $_froms = array('web' => 1, 'wap' => 1, 'mobile' => 1, 'sms' => 1, 'qq' => 1, 'msn' => 1, 'api' => 1, 'sina' => 1, 'qqwb' => 1, 'vote' => 1, 'qun' => 1, 'wechat' => 1, 'fenlei' => 1, 'event' => 1, 'android' => 1, 'iphone' => 1, 'ipad' => 1, 'pad' => 1, 'androidpad' => 1, 'reward' => 1); $from = $from && $_froms[$from] ? $from : 'web'; if (empty($item) || $item_id < 0) { if (!is_numeric($type)) { $_types = array('first' => 1, 'forward' => 1, 'reply' => 1, 'both' => 1); $type = $totid < 1 && $type && isset($_types[$type]) ? 'first' : $type; if (empty($type)) { $type = 'first'; } } } $data['from'] = $from; if (($type == 'forward' || $type == 'both') && $item == 'qun') { $data['type'] = $item; } else { $data['type'] = $type; } if ($item == 'channel' && $item_id > 0) { $channeldata = jlogic('channel')->id2category($item_id); if ($channeldata) { if ($channeldata['purpostview']) { $data['type'] = 'channel'; } if ($channeldata['topictype']) { $data['managetype'] = $channeldata['topictype']; } unset($channeldata); } } $data['uid'] = $uid = max(0, (int) ($uid ? $uid : MEMBER_ID)); $data['videoid'] = $videoid = max(0, (int) $videoid); $data['longtextid'] = $longtextid = max(0, (int) $longtextid); $timestamp = (int) ($timestamp ? $timestamp : $dateline); $data['dateline'] = $data['lastupdate'] = $timestamp = $dateline = $timestamp > 0 ? $timestamp : TIMESTAMP; $data['totid'] = $totid; $data['touid'] = $touid; $data['anonymous'] = $GLOBALS['_J']['config']['anonymous_enable'] ? $datas['anonymous'] : 0; $data['item'] = $item; $data['item_id'] = $item_id; $member = $this->GetMember($data['uid']); if (!$member) { return "用户不存在"; } if ($item == 'qun' && $item_id > 0) { $qun_closed = DB::result_first("SELECT closed FROM " . DB::table('qun') . " WHERE qid='{$item_id}'"); if ($qun_closed) { return "当前" . $GLOBALS['_J']['config']['changeword']['weiqun'] . "已经关闭,你无法发布内容"; } $r = $this->is_qun_member($item_id, $uid); if (!$r) { return "你没有权限进行当前操作"; } } if ($item == 'channel' && $item_id > 0) { $can_pub_topic = jlogic('channel')->can_pub_topic($item_id); if (!$can_pub_topic) { return "你没有权限进行当前操作"; } } if ($item == 'company' && $item_id > 0) { if ($GLOBALS['_J']['config']['company_enable']) { $my_companyid = $GLOBALS['_J']['member']['companyid']; $can_pub_cp_topic = false; if ($item_id == $my_companyid) { $can_pub_cp_topic = true; } elseif (@is_file(ROOT_PATH . 'include/logic/cp.logic.php') && $member['companyid'] > 0) { $is_my_cpid = jlogic('cp')->is_cp_company($item_id); if ($is_my_cpid) { $can_pub_cp_topic = true; } } if (!$can_pub_cp_topic) { return "你没有权限进行当前操作"; } } else { $item = ''; $item_id = 0; $data['type'] = 'first'; } } if ($GLOBALS['_J']['config']['add_topic_need_face'] && !$member['__face__']) { return "本站需上传头像才可互动。"; } $MemberHandler =& Obj::registry('MemberHandler'); if ($MemberHandler) { if (!in_array($type, array('both', 'reply', 'forward'))) { if (!$MemberHandler->HasPermission('topic', 'add', 0, $member)) { if (true !== IN_JISHIGOU_SMS) { return $MemberHandler->GetError(); } } } else { if (('reply' == $type || 'both' == $type) && !$MemberHandler->HasPermission('topic', 'reply', 0, $member)) { return $MemberHandler->GetError(); } elseif (('forward' == $type || 'both' == $type) && !$MemberHandler->HasPermission('topic', 'forward', 0, $member)) { return $MemberHandler->GetError(); } } } if (MEMBER_ROLE_TYPE != 'admin') { if ($GLOBALS['_J']['config']['topic_vip'] == 1) { if (!$member['validate']) { return "非V认证用户无法发布信息"; } } elseif ($GLOBALS['_J']['config']['topic_vip'] == 2) { $to_verify = 1; if (!$member['validate']) { $f_rets['vip'] = 1; $f_rets['msg'] = '非V认证用户发言内容进入<a href="index.php?mod=' . $member['uid'] . '&type=my_verify" target="_blank">待审核</a>, <a href="' . $GLOBALS['_J']['config']['site_url'] . '/index.php?mod=other&code=vip_intro" target="_blank">点击申请认证</a>'; $is_verify = true; } } } $data['username'] = $username = $member['username']; $topic_content_id = abs(crc32(md5($content))); if (!$verify) { if ($GLOBALS['_J']['config']['lastpost_time'] > 0 && !in_array($data['from'], array('sina', 'qqwb')) && $timestamp - $member['lastpost'] < $GLOBALS['_J']['config']['lastpost_time']) { return "您发布的太快了,请在<b>{$GLOBALS['_J']['config']['lastpost_time']}</b>秒后再发布"; } } #if NEDU if (defined('NEDU_MOYO')) { if (false != ($deny = nlogic('feeds.app.jsg')->topic_publish_denied($data))) { return $deny; } } #endif if ($imageid) { if ($verify) { $data['imageid'] = $imageid; } else { $data['imageid'] = $imageid = jlogic('image')->get_ids($imageid, $data['uid']); } } if ($attachid) { if ($verify) { $data['attachid'] = $attachid; } else { $data['attachid'] = $attachid = jlogic('attach')->get_ids($attachid, $data['uid']); } } $data['musicid'] = $musicid; if ($xiami_id > 0) { $musicid = $data['musicid'] = jtable('topic_music')->insert(array('uid' => $data['uid'], 'username' => $data['username'], 'dateline' => $timestamp, 'xiami_id' => $xiami_id), true); } $topic_more = array(); $parents = ''; $data['roottid'] = 0; if ($totid > 0) { $content = $this->GetForwardContent($content); $_type_names = array('both' => '转发和评论', 'forward' => '转发', 'reply' => '评论'); $_type_name = $_type_names[$type]; $to_topic = $row = $this->Get($totid); if (!$to_topic) { return "对不起,由于原微博已删除,不能{$_type_name}"; } if (('reply' == $type || 'both' == $type) && ($rets = jsg_role_check_allow('topic_reply', $row['uid'], $data['uid']))) { return $rets['error']; } elseif (('forward' == $type || 'both' == $type) && ($rets = jsg_role_check_allow('topic_forward', $row['uid'], $data['uid']))) { return $rets['error']; } $topic_more = $this->GetMore($totid); $data['totid'] = $row['tid']; $data['touid'] = $row['uid']; $data['tousername'] = $row['nickname']; $parents = $topic_more['parents'] ? $topic_more['parents'] . ',' . $totid : $totid; $data['roottid'] = $topic_more['parents'] ? substr($parents, 0, strpos($parents, ',')) : $totid; $root_topic = $this->Get($data['roottid']); if ($root_topic['item'] == 'qun' && $root_topic['item_id'] > 0) { $qun_closed = DB::result_first("SELECT closed FROM " . DB::table('qun') . " WHERE qid='{$root_topic['item_id']}'"); if ($qun_closed) { return "当前" . $GLOBALS['_J']['config'][changeword][weiqun] . "已经关闭,你无法发布内容"; } } if ($data['totid'] != $data['roottid']) { $rrow = $this->Get($data['roottid']); if (!$rrow) { return "对不起,由于原始微博已删除,不能{$_type_name}"; } if (('reply' == $type || 'both' == $type) && ($rets = jsg_role_check_allow('topic_reply', $rrow['uid'], $data['uid']))) { return $rets['error']; } elseif (('forward' == $type || 'both' == $type) && ($rets = jsg_role_check_allow('topic_forward', $rrow['uid'], $data['uid']))) { return $rets['error']; } if ('forward' == $type || 'both' == $type) { $content .= $this->ForwardSeprator . "{$row['nickname']} : " . addslashes($this->_content_strip($row['raw_content'])); } } } $_process_result = $this->_process_content($content, $data); $longtext = $_content = $_process_result['content']; $at_uids = $_process_result['at_uids']; $tags = $_process_result['tags']; $urls = $_process_result['urls']; unset($data['longtextid']); if (jstrlen($_content) > $this->_len) { $_content = cut_str($_content, $this->_len, ''); $_content = $this->_content_end($_content); if (strlen($longtext) > strlen($_content)) { $longtextid = 0; if ($is_verify) { $longtextid = jlogic('longtext')->Add($longtext, $data['uid']); } $longtextid = $longtextid > 0 ? $longtextid : TIMESTAMP; $data['longtextid'] = $longtextid; } } if (!$GLOBALS['_J']['config']['clear_format_open']) { $_content = $this->clearFormat($_content); } else { $_content = preg_replace('/\\n{3,}/', '\\n\\n', $_content); $_content = nl2br($_content); } if (strlen($_content) > 255) { $_content = cut_str($_content, 254 * 2, ''); $data['content'] = cut_str($_content, 255, ''); $data['content2'] = substr($_content, strlen($data['content'])); } else { $data['content'] = $_content; } $data['postip'] = $postip ? $postip : $GLOBALS['_J']['client_ip']; $data['post_ip_port'] = $GLOBALS['_J']['client_ip_port']; if ($is_verify) { $sql = "insert into `" . TABLE_PREFIX . "topic_verify` (`" . implode("`,`", array_keys($data)) . "`) values ('" . implode("','", $data) . "')"; DB::query($sql); $topic_id = $data['tid'] = $tid = DB::insert_id(); if ($imageid) { DB::query("update " . TABLE_PREFIX . "topic_image set `tid`='-1' where `id` in ({$imageid})"); } if ($attachid) { DB::query("update " . TABLE_PREFIX . "topic_attach set `tid`='-1' where `id` in ({$attachid})"); } if ($urls) { $date = $data; $date['id'] = $data['tid']; $date['tid'] = -1; $this->_process_urls($date, $urls, false, 'topic_verify'); } if ($notice_to_admin = $GLOBALS['_J']['config']['notice_to_admin']) { $pm_post = array('message' => $member['nickname'] . "有一条微博进入待审核状态,<a href='admin.php?jump_url=admin.php?mod=topic&code=verify' target='_blank'>点击</a>进入审核。", 'to_user' => str_replace('|', ',', $notice_to_admin)); $admin_info = DB::fetch_first('select `uid`,`username`,`nickname` from `' . TABLE_PREFIX . 'members` where `uid` = 1'); load::logic('pm'); $PmLogic = new PmLogic(); $PmLogic->pmSend($pm_post, $admin_info['uid'], $admin_info['username'], $admin_info['nickname']); } if ($f_rets['verify'] || $f_rets['vip']) { return array($f_rets['msg']); } } else { $tid = jtable('topic')->insert($data, true); if ($tid < 1) { return "未知的错误"; } $topic_id = $data['tid'] = $tid; if (is_array($datas) && isset($datas['relateid'])) { $relateid = $datas['relateid'] ? $datas['relateid'] : 0; $featureid = $datas['featureid'] ? $datas['featureid'] : 0; if ($relateid) { DB::query("update `" . TABLE_PREFIX . "topic` set `relateid`='{$tid}',`featureid`='{$featureid}' where `tid`='{$relateid}'"); $pmtoinfo = jlogic('topic')->Get($relateid, '`uid`,`item_id`,`relateid`,`featureid`', ''); $ch_typeinfo = jlogic('channel')->get_channel_typeinfo_byid($pmtoinfo['item_id']); $msg = '您提出的'; $msg .= $ch_typeinfo['channel_type'] == 'ask' ? '问题' : '建议'; $msg .= $pmtoinfo['relateid'] == 0 ? ',已经有了答复' : '重新给予了答复'; if ($featureid != $pmtoinfo['featureid']) { $msg .= ',状态变更为“' . ($ch_typeinfo['feature'][$featureid] ? $ch_typeinfo['feature'][$featureid] : '等待处理') . '”'; } postpmsms($pmtoinfo['uid'], $relateid, $msg); } } if ($is_new) { if (!empty($item) && $item_id > 0 && !($design == 'design' || $design == 'btn_wyfx')) { jfunc('app'); $param = array('item' => $item, 'item_id' => $item_id, 'tid' => $tid, 'uid' => $data['uid']); if ($item == 'talk') { $param['touid'] = $touid; $param['totid'] = $totid; } app_add_relation($param); unset($param); } jtable('topic_more')->add($tid, $parents, $longtext); } jtable('member_topic')->add($tid); if ($parents && 'first' != $data['type']) { jtable('topic_relation')->add($tid, $parents); } $p = array('uid' => $data['uid'], 'lastactivity' => $data['lastupdate'], 'lastpost' => $data['lastupdate'], 'last_topic_content_id' => $topic_content_id); if ('reply' != $data['type']) { $p['+@topic_count'] = 1; } jtable('members')->update($p); if ($at_uids) { $this->_process_at_uids($data, $at_uids); ios_push_msg($at_uids, '你有新消息:1条@我'); } if ($totid > 0 && $parents) { $this->_process_reply($data); ios_push_msg($totid, '你有新消息:1条评论'); } if ($urls) { $this->_process_urls($data, $urls); } if ($imageid) { jlogic('image')->set_tid($imageid, $tid); } if ($attachid) { jlogic('attach')->set_tid($attachid, $tid); } if ($musicid) { $sql = "update `" . TABLE_PREFIX . "topic_music` set `tid` = '{$tid}' where `id` = '{$musicid}' "; DB::query($sql); } if ($data['videoid'] > 0) { $sql = "update `" . TABLE_PREFIX . "topic_video` set `tid`='{$tid}' where `id`='{$data['videoid']}'"; DB::query($sql); } #有奖转发判断 if ($is_reward) { $allowed_reward = 1; $reward_info = jlogic('reward')->getRewardInfo($is_reward); if ($reward_info['rules']) { foreach ($reward_info['rules'] as $key => $val) { if ($allowed_reward == 0) { break; } switch ($key) { case 'at_num': if ($val > count($at_uids)) { $allowed_reward = 0; } break; case 'user': $my_buddyids = get_buddyids($data['uid']); if (!$my_buddyids) { $allowed_reward = 0; break; } foreach ($val as $re_uid => $re_name) { if ($re_uid == $data['uid']) { continue; } if (!in_array($re_uid, $my_buddyids)) { $allowed_reward = 0; break; } } break; case 'tag': foreach ($val as $re_tag) { if (!$tags) { $allowed_reward = 0; break; } if (!in_array($re_tag, $tags)) { $allowed_reward = 0; break; } } break; default: break; } } } #超时转发也不可进入有奖转发名单 if (TIMESTAMP > $reward_info['tot']) { $allowed_reward = 0; } #记录有奖转发 DB::query(" insert into `" . TABLE_PREFIX . "reward_user` (`uid`,`tid`,`rid`,`on`,`dateline`) values('{$data['uid']}','{$tid}','{$is_reward}','{$allowed_reward}','" . TIMESTAMP . "')"); DB::query(" update `" . TABLE_PREFIX . "reward` set `f_num` = `f_num`+1,`a_num`=`a_num`+{$allowed_reward} where `id` = '{$is_reward}' "); } if ($item == 'qun' && ($data['type'] == 'qun' || $data['type'] == 'first')) { if (!empty($item_id)) { $query = DB::query("SELECT uid FROM " . DB::table('qun_user') . " WHERE qid='{$item_id}'"); $uids = array(); while ($value = DB::fetch($query)) { if ($value['uid'] != $uid) { $uids[$value['uid']] = $value['uid']; } } if (!empty($uids)) { DB::query("UPDATE " . DB::table('members') . "\r\n\t \t\t\t\t\t SET qun_new=qun_new+1\r\n\t \t\t\t\t\t WHERE uid IN(" . jimplode($uids) . ")"); } } } if ($item == 'channel' && $item_id > 0 && ($data['type'] == 'first' || $data['type'] == 'channel')) { if (!empty($item_id)) { $query = DB::query("SELECT uid FROM " . DB::table('buddy_channel') . " WHERE ch_id='{$item_id}'"); $uids = array(); while ($value = DB::fetch($query)) { if ($value['uid'] != $uid) { $uids[$value['uid']] = $value['uid']; } } if (!empty($uids)) { DB::query("UPDATE " . DB::table('members') . "\r\n\t \t\t\t\t\t SET channel_new=channel_new+1\r\n\t \t\t\t\t\t WHERE uid IN(" . jimplode($uids) . ")"); } } if ($GLOBALS['_J']['config']['extcredits_enable'] && $data['uid'] > 0) { $credits_itemid = jlogic('channel')->is_update_credits_byid($item_id); if ($credits_itemid) { update_credits_by_action('_C' . crc32($credits_itemid), $data['uid']); } } } if ($item == 'company' && $item_id > 0 && $data['type'] == 'company') { $query = DB::query("SELECT uid FROM " . DB::table('members') . " WHERE companyid='{$item_id}'"); $uids = array(); while ($value = DB::fetch($query)) { if ($value['uid'] != $uid) { $uids[$value['uid']] = $value['uid']; } } $query = DB::query("SELECT uid FROM " . DB::table('cp_user') . " WHERE companyid='{$item_id}'"); while ($value = DB::fetch($query)) { if ($value['uid'] != $uid) { $uids[$value['uid']] = $value['uid']; } } if (!empty($uids)) { DB::query("UPDATE " . DB::table('members') . " SET company_new=company_new+1 WHERE uid IN(" . jimplode($uids) . ")"); } } $update_credits = false; if ($tags) { Load::logic('tag'); $TagLogic = new TagLogic('topic'); $TagLogic->Add(array('item_id' => $tid, 'tag' => $tags), false); if ($GLOBALS['_J']['config']['extcredits_enable'] && $data['uid'] > 0) { if (is_array($tags) && count($tags)) { if ($GLOBALS['_J']['config']['sign']['sign_enable'] && jtable('sign_tag')->is_sign_tag($tags)) { $sign_credits = update_credits_by_action('_S', $data['uid']); } if (!$sign_credits['updatecredit']) { foreach ($tags as $_t) { if ($_t) { $update_credits = update_credits_by_action('_T' . crc32($_t), $data['uid']) || $update_credits; } } } } } jlogic('tag_favorite')->topic_new($tags, $data['uid']); } if ($GLOBALS['_J']['config']['extcredits_enable']) { if (!$update_credits && !$sign_credits && $data['uid'] > 0) { if ($totid > 0) { update_credits_by_action('reply', $data['uid']); } else { update_credits_by_action('topic', $data['uid']); } } } if ($GLOBALS['_J']['config']['imjiqiren_enable'] && imjiqiren_init()) { $to_admin_robot = jconf::get('imjiqiren', 'admin_qq_robots'); if ($to_admin_robot) { imjiqiren_send_message($to_admin_robot, 'to_admin_robot', array('site_url' => $GLOBALS['_J']['config']['site_url'], 'username' => $data['username'], 'content' => $data['content'], 'topic_id' => $topic_id)); } } if ($GLOBALS['_J']['config']['sms_enable'] && sms_init()) { $to_admin_mobile = jconf::get('sms', 'admin_mobile'); if ($to_admin_mobile) { sms_send_message($to_admin_mobile, 'to_admin_mobile', array('site_url' => $GLOBALS['_J']['config']['site_url'], 'username' => $data['username'], 'content' => $data['content'], 'topic_id' => $topic_id)); } } if (@is_file(ROOT_PATH . 'include/logic/cp.logic.php') && $GLOBALS['_J']['config']['company_enable'] && $member['companyid'] > 0) { $CpLogic = jlogic('cp'); $update_companyid = $member['companyid']; $update_departmentid = $member['departmentid']; if ($item = 'company' && $item_id > 0 && $update_companyid != $item_id) { $cp_company_info = $CpLogic->get_cp_row_bycompany($item_id); if ($cp_company_info) { $update_companyid = $member['companyid']; $update_departmentid = $member['departmentid']; } } $CpLogic->update('company', $update_companyid, 0, 1); if ($update_departmentid > 0) { $CpLogic->update('department', $update_departmentid, 0, 1); } } $feed_action = ''; if (in_array($data['type'], array('first', 'reply', 'forward', 'both'))) { $feed_action = $data['type']; if ($feed_action == 'first') { $feed_action = 'post'; } elseif ($feed_action == 'both') { $feed_action = 'reply'; } } if ($feed_action) { $feed_msg = cut_str($data['content'], 30, ''); feed_msg('channel', $feed_action, $tid, $feed_msg, $item_id, $data['anonymous']); } $this->_syn_to($data); } if ($GLOBALS['_J']['plugins']['func']['posttopic']) { hookscript('posttopic', 'funcs', array('param' => array($data['tid']), 'step' => 'post'), 'posttopic'); } if ('reply' != $data['type']) { cache_db('rm', "{$data['uid']}-topic-%", 1); jtable('topic')->archive($data['tid']); } $this->cache_rm($data['tid']); #if NEDU defined('NEDU_MOYO') && nfevent('jsg.logic.topic.add', null, $data); #endif return $data; }
function add($p, $delete_if_exists = 0) { $rets = array(); $buddyid = (int) ($p['buddyid'] ? $p['buddyid'] : $p['touid']); $uid = $p['uid'] > 0 ? $p['uid'] : MEMBER_ID; if ($uid < 1 || $buddyid < 1 || $uid == $buddyid) { $rets['error'] = '您不能关注自己'; return $rets; } $query = DB::query("SELECT * FROM `" . TABLE_PREFIX . "members` WHERE `uid` IN ('{$uid}','{$buddyid}')"); $members = array(); while (false != ($row = DB::fetch($query))) { $members[$row['uid']] = $row; } $info = $this->info($buddyid, $uid); if (!$info) { $sys_config = jconf::get(); if (count($members) < 2) { $rets['error'] = '关注失败,TA已经消失不见了'; return $rets; } if ($sys_config['follow_limit'] > 0 && $members[$uid]['follow_count'] >= $sys_config['follow_limit']) { $rets['error'] = '本站限制关注数量为<b>' . $sys_config['follow_limit'] . '</b>人,您不能再关注更多的好友了'; return $rets; } if ($members[$buddyid]['disallow_beiguanzhu']) { $rets['error'] = '关注失败,TA设置了禁止被关注'; return $rets; } if (is_blacklist($uid, $buddyid)) { $rets['error'] = '关注失败,对方已将您拉入了黑名单'; return $rets; } $_tmps = jsg_role_check_allow('follow', $buddyid, $uid); if ($_tmps && $_tmps['error']) { return $_tmps; } jtable('buddy_follow')->add($uid, $buddyid); jtable('buddy_fans')->add($buddyid, $uid); ios_push_msg($buddyid, '你有新消息:1个粉丝'); $this->count($uid); $this->count($buddyid); if ($sys_config['sendmailday'] > 0) { jtable('mailqueue')->add($members[$buddyid], 'notice_fans'); } if ($sys_config['extcredits_enable'] && $uid > 0) { $update_credits = false; if ($members[$buddyid]['nickname']) { $update_credits = update_credits_by_action("_U" . crc32($members[$buddyid]['nickname']), $uid); } if (!$update_credits) { update_credits_by_action('buddy', $uid); } } if ($sys_config['imjiqiren_enable'] && imjiqiren_init($sys_config)) { imjiqiren_send_message($members[$buddyid], 'f'); } if ($sys_config['sms_enable'] && sms_init($sys_config)) { sms_send_message($members[$buddyid], 'f'); } } else { if ($delete_if_exists) { $this->del_info($buddyid, $uid); } } return $info; }
function do_recd() { Load::logic('topic_recommend'); $TopicRecommendLogic = new TopicRecommendLogic(); $tid = intval($this->Post['tid']); $topic = DB::fetch_first("SELECT * FROM " . DB::table("topic") . " WHERE tid='{$tid}'"); if (empty($topic)) { json_error("当前微博不存在或者已经被删除了"); } if ($topic['item'] == 'channel' && $topic['item_id'] > 0) { if (!function_exists('item_topic_from')) { jfunc('item'); } $topic = item_topic_from($topic); } if (!($this->MemberHandler->HasPermission('topic', 'do_recd') || $topic['ismanager'])) { json_error("您的角色没有推荐微博的权限!"); } $recd = intval($this->Post['recd'][0]); if ($recd > 4 || $recd < 0) { json_error("推荐类型错误"); } if ($topic['item'] == 'qun' && $topic['item_id'] > 0) { Load::logic('qun'); $QunLogic = new QunLogic(); $tmp_perm = $QunLogic->chk_perm($topic['item_id'], MEMBER_ID); if (!('admin' == MEMBER_ROLE_TYPE || in_array($tmp_perm, array(1, 2)))) { json_error("你没有权限推荐群内微博"); } } if ($recd == 0) { $topic_recd = $TopicRecommendLogic->delete(array($tid)); json_result("0|||取消推荐成功!"); } else { $expiration = jstrtotime(trim($this->Post['expiration'])); $tag_id = intval($this->Post['tag_id']); $r_title = strip_tags(trim($this->Post['r_title'])); if (!empty($tag_id)) { $count = DB::result_first("SELECT COUNT(*) FROM " . DB::table('topic_tag') . " WHERE item_id='{$tid}' AND tag_id='{$tag_id}' "); if (!empty($count)) { $topic['item'] = 'tag'; $topic['item_id'] = $tag_id; } } $item = $this->Post['item_id'] ? 'channel' : $topic['item']; $item_id = $this->Post['item_id'] ? intval($this->Post['item_id']) : $topic['item_id']; if (empty($r_title)) { json_error("推荐标题为空或内容不合法"); } if ($expiration && $expiration < time()) { json_error("时间设置无效,请重新设置"); } $data = array('expiration' => $expiration, 'item' => $item, 'item_id' => $item_id, 'tid' => $tid, 'recd' => $recd, 'dateline' => TIMESTAMP, 'r_uid' => MEMBER_ID, 'r_nickname' => MEMBER_NICKNAME, 'r_title' => $r_title); if ($TopicRecommendLogic->is_exists($tid)) { unset($data['tid']); $TopicRecommendLogic->modify($data, array('tid' => $tid)); json_result("2|||重新推荐成功!"); } else { $TopicRecommendLogic->add($data); feed_msg('recommend', 'recommend', $tid, $r_title, $item_id); if ($recd == 4) { $iphone_msg = cut_str($topic['content'], 30, ''); ios_push_msg('all', $r_title . ':' . $iphone_msg); } $credits = jconf::get('credits'); update_credits_by_action('recommend', $topic['uid']); json_result("1|||推荐成功!被推荐者因:" . $this->js_show_msg(1)); } } }