Вход Регистрация
Файл: IPBMafia.ru_IPB_3.4.6_Final_Rus _Nulled/board/upload/admin/applications/forums/modules_public/extras/forward.php
Строк: 180
<?php

/**
 * <pre>
 * Invision Power Services
 * IP.Board vVERSION_NUMBER
 * Forward a topic to someone
 * Last Updated: $Date: 2014-09-05 17:52:36 +0100 (Fri, 05 Sep 2014) $
 * </pre>
 *
 * @author         $Author: rashbrook $
 * @copyright    (c) 2001 - 2009 Invision Power Services, Inc.
 * @license        http://www.invisionpower.com/company/standards.php#license
 * @package        IP.Board
 * @subpackage    Forums
 * @link        http://www.invisionpower.com
 * @since        20th February 2002
 * @version        $Revision: 12495 $
 *
 */

if ( ! defined'IN_IPB' ) )
{
    print 
"<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.";
    exit();
}

class 
public_forums_extras_forward extends ipsCommand
{
    
/**
     * Temporary stored output HTML
     *
     * @var        string
     */
    
public $output;

    
/**
     * Forum information
     *
     * @var        array        Array of forum details
     */
    
protected $forum            = array();

    
/**
     * Topic information
     *
     * @var        array        Array of topic details
     */
    
protected $topic            = array();
    
    protected 
$page            = array();

    
/**
     * Class entry point
     *
     * @param    object        Registry reference
     * @return    @e void        [Outputs to screen/redirects]
     */
    
public function doExecuteipsRegistry $registry )
    {
        
        
/* Disabled? */
        
if ( ! $this->settings['sl_enable'] )
        {
            
$this->registry->output->showError'forward_turned_off'103240.1 );
        }
        
        
/* Permission Check */
        
$cache = isset( $this->caches['sharelinks'] ) ? $this->caches['sharelinks'] : ipsRegistry::cache()->getCache('sharelinks');
        if ( 
$cache'email' ]['share_groups'] != '*' and !IPSMember::isInGroup$this->memberDataexplode','$cache'email' ]['share_groups'] ) ) )
        {
            
$this->registry->output->showError'forward_turned_off'103240.2 );
        }
        
        
//-----------------------------------------
        // Grab skin and lang stuff
        //-----------------------------------------
        
        
ipsRegistry::getClass'class_localization')->loadLanguageFile( array( 'public_emails' ), 'core' );
        
        
/* Via URL and topic title? */
        
if ( $this->request['url'] AND $this->request['title'] )
        {
            
$this->page['url']   = IPSText::parseCleanValueIPSText::base64_decode_urlSafe$this->request['url'] ) );
            
$this->page['title'] = IPSText::parseCleanValueurldecode$this->request['title'] ) );
            
            if ( ! empty( 
$this->settings['ccs_root_url'] ) )
            {
                
$_urls     explode"n"str_replace"r"''trim$this->settings['ccs_root_url'] ) ) );
                
$_urls[] = $this->settings['_original_base_url'];
                
$ok      FALSE;
                
                foreach( 
$_urls as $_url )
                {
                    if ( ! empty(
$_url) AND parse_url$this->page['url'], PHP_URL_HOST ) === parse_url$_urlPHP_URL_HOST ) )
                    {
                        
$ok TRUE;
                        break;
                    }
                }
                
                if ( 
$ok !== TRUE 
                {
                    
$this->registry->output->showError'no_permission'100234.2falsenull403 );
                }
            }
            else
            {
                if ( 
parse_url$this->page['url'], PHP_URL_HOST ) !== parse_url$this->settings['_original_base_url'], PHP_URL_HOST ) ) 
                {
                    
$this->registry->output->showError'no_permission'100234.3falsenull403 );
                }
            }
        }
        else
        {
            
//-----------------------------------------
            // Check the input
            //-----------------------------------------
            
            
$this->request['t'] = intval($this->request['t']);
            
$this->request['f'] = intval($this->request['f']);
            
            if ( ! 
$this->request['t'] )
            {
                
$this->registry->output->showError'forward_no_tid'10321 );
            }
        
            
//-----------------------------------------
            // Get the topic details
            //-----------------------------------------
        
            
$this->topic    $this->DB->buildAndFetch( array( 'select' => '*''from' => 'topics''where' => "tid=" $this->request['t'] ) );
            
$this->forum    ipsRegistry::getClass('class_forums')->forum_by_id$this->topic['forum_id'] ];
            
            
//-----------------------------------------
            // Error out if we can not find the forum
            //-----------------------------------------
            
            
if ( ! $this->forum['id'] )
            {
                
$this->registry->output->showError'forward_no_fid'10322 );
            }
            
            
//-----------------------------------------
            // Error out if we can not find the topic
            //-----------------------------------------
            
            
if ( !$this->topic['tid'] )
            {
                
$this->registry->output->showError'forward_no_tid'10323 );
            }
    
            
//-----------------------------------------
            // Check viewing permissions, private forums,
            // password forums, etc
            //-----------------------------------------
            
            
if (! $this->memberData['member_id'] )
            {
                
$this->registry->output->showError'forward_only_members'10324 );
            }
            
            
ipsRegistry::getClass('class_forums')->forumsCheckAccess$this->forum['id'] );
        }
        
        
/* last check */
        
if ( ! $this->topic['tid'] AND ! $this->page['url'] )
        {
            
$this->registry->output->showError'forward_no_tid'10323.2 );
        }
        
        
/* Ok, I lied. Is this share entry enabled? */
        
$cache ipsRegistry::cache()->getCache('sharelinks');
        
        if ( ! 
is_array$cache['email'] ) OR ! $cache['email']['share_enabled'] )
        {
            
$this->registry->output->showError'forward_turned_off'103240 );
        }
        
        
//-----------------------------------------
        // What to do?
        //-----------------------------------------
        
        
if ( $this->request['do'] == '01' )
        {
            
$this->_sendEmail();
        }
        else
        {
            
$this->_showForm();
        }
    }
    
    
/**
     * Forward the page (sends the email)
     *
     * @return    @e void        [Outputs to screen/redirects]
     */
    
protected function _sendEmail()
    {
        
//-----------------------------------------
        // Check
        //-----------------------------------------
        
        
if ( $this->request['k'] != $this->member->form_hash )
        {
            
$this->registry->getClass('output')->showError'no_permission'2029nullnull403 );
        }
        
        
/* Check the CAPTCHA */
        
if ( $this->settings['bot_antispam_type'] != 'none' )
        {
            if ( 
$this->registry->getClass('class_captcha')->validate() !== TRUE )
            {
                return 
$this->_showForm('err_reg_code');
            }
        }
        
        
$lang_to_use '';
        
        foreach( 
ipsRegistry::cache()->getCache('lang_data') as $l )
        {
            if ( 
$this->request['lang'] == $l['lang_id'] )
            {
                
$lang_to_use $l['lang_id'];
            }
        }
        
        
$check_array = array ( 'to_name'   =>  'stf_no_name',
                               
'to_email'  =>  'stf_no_email',
                               
'message'   =>  'stf_no_msg',
                               
'subject'   =>  'stf_no_subject'
                             
);
                             
        foreach (
$check_array as $input => $msg)
        {
            if ( !
$this->request$input ] )
            {
                
$this->registry->output->showError$msg10325 );
            }
        }

        if ( !
IPSText::checkEmailAddress$this->request['to_email'] ) )
        {
            
$this->registry->output->showError'email_address_invalid'10326 );
        }
        
        
IPSText::getTextClass('email')->getTemplate"forward_page"$lang_to_use );
            
        
IPSText::getTextClass('email')->buildMessage( array( 'THE_MESSAGE'    => $this->request['message'],
                                                             
'TO_NAME'        => $this->request['to_name'],
                                                             
'FROM_NAME'        => $this->memberData['members_display_name'] ) );
                                    
        
IPSText::getTextClass('email')->subject    $this->request['subject'];
        
IPSText::getTextClass('email')->to        $this->request['to_email'];
        
IPSText::getTextClass('email')->from    $this->memberData['email'];
        
IPSText::getTextClass('email')->sendMail();
        
        
$this->registry->output->redirectScreen$this->lang->words['redirect'], $this->page['url'] );
    }
    
    
/**
     * Show the form to forward the page
     *
     * @return    @e void        [Outputs to screen/redirects]
     */
    
protected function _showForm$msg='' )
    {
        
ipsRegistry::getClass'class_localization')->loadLanguageFile( array( 'public_email_content' ), 'core' );
        
        if ( 
$this->topic['tid'] )
        {
            
$this->lang->words['send_text'] = str_replace"<#THE LINK#>" $this->registry->getClass('output')->buildSEOUrl"showtopic=" $this->topic['tid'], 'public'$this->topic['title_seo'], 'showtopic') , $this->lang->words['send_text'] );
            
$this->lang->words['send_text'] = str_replace"<#USER NAME#>"$this->memberData['members_display_name'], $this->lang->words['send_text'] );
            
$subject $this->topic['title'];
        }
        else
        {
            
$this->lang->words['send_text'] = str_replace"<#THE LINK#>" $this->page['url'] , $this->lang->words['send_text'] );
            
$this->lang->words['send_text'] = str_replace"<#USER NAME#>"$this->memberData['members_display_name'], $this->lang->words['send_text'] );
            
$subject $this->page['title'];
        }
        
        
/* CAPTCHA */
        
if( $this->settings['bot_antispam_type'] != 'none' )
        {
            
$captchaHTML $this->registry->getClass('class_captcha')->getTemplate();
        }
        
        
$this->output $this->registry->getClass('output')->getTemplate('emails')->forward_form$subject$this->lang->words['send_text'], ''$captchaHTML$msg );
        
        if ( 
$this->topic['tid'] )
        {
            
$this->registry->output->addNavigation$this->forum['name'], $this->settings['_base_url'] . "showforum={$this->forum['id']});
            
$this->registry->output->addNavigation$this->topic['title'], $this->settings['_base_url'] . "showtopic={$this->topic['tid']});
            
$this->registry->output->addNavigation$this->lang->words['title'], '' );
            
$this->registry->output->setTitle$this->lang->words['title'] . ' - ' ipsRegistry::$settings['board_name'] );
        }
        else
        {
            
$this->registry->output->addNavigation$this->lang->words['title'], '' );
            
$this->registry->output->setTitle$this->lang->words['title'] . ' - ' ipsRegistry::$settings['board_name'] );
        }
        
        
$this->registry->output->addContent$this->output );
        
$this->registry->output->sendOutput();
    }
}
Онлайн: 2
Реклама