No Code Attached Yet J3 Issue bug
avatar stAn47
stAn47
16 Oct 2017

Steps to reproduce the issue

Hello friends, it would be nice if JFile::copy checked if the src and dest paths are the same. Right now it gives an error and thus installer or other dependencies fail upon such a case.

Usage:
during the development we are using an installer path in an component directory such as /administrator/components/com_test/install/systempluginname

which is symlinked to
/plugins/system/systempluginname

upon changes in the component BE config, it either enables or disables particular plugins that are used per the component's logic, but mainly it makes sure that the plugins is up-to-date by updating it with the Joomla installer.

it would be nice if JFile::copy did not return an error upon same src and dest especially if those directories are symlinked and are seen as the same by "realpath".

i do not really know how to do a PR, but i would suggest:

$src = realpath($src); 
$dest = realpath($dest); 
if ($src === $dest) return true; 

into:
\libraries\joomla\filesystem\file.php

on Joomla 3.8.1

at about line 99

full function would then look like:

/**
	 * Copies a file
	 *
	 * @param   string   $src          The path to the source file
	 * @param   string   $dest         The path to the destination file
	 * @param   string   $path         An optional base path to prefix to the file names
	 * @param   boolean  $use_streams  True to use streams
	 *
	 * @return  boolean  True on success
	 *
	 * @since   11.1
	 */
	public static function copy($src, $dest, $path = null, $use_streams = false)
	{
		
		
		$pathObject = new JFilesystemWrapperPath;

		// Prepend a base path if it exists
		if ($path)
		{
			$src = $pathObject->clean($path . '/' . $src);
			$dest = $pathObject->clean($path . '/' . $dest);
			
		}
		
		$src = realpath($src); 
		$dest = realpath($dest); 
		if ($src === $dest) return true; 
		
		// Check src path
		if (!is_readable($src))
		{
			JLog::add(JText::sprintf('JLIB_FILESYSTEM_ERROR_JFILE_FIND_COPY', $src), JLog::WARNING, 'jerror');

			return false;
		}

		if ($use_streams)
		{
			$stream = JFactory::getStream();

			if (!$stream->copy($src, $dest))
			{
				JLog::add(JText::sprintf('JLIB_FILESYSTEM_ERROR_JFILE_STREAMS', $src, $dest, $stream->getError()), JLog::WARNING, 'jerror');

				return false;
			}

			return true;
		}
		else
		{
			$FTPOptions = JClientHelper::getCredentials('ftp');

			if ($FTPOptions['enabled'] == 1)
			{
				// Connect the FTP client
				$ftp = JClientFtp::getInstance($FTPOptions['host'], $FTPOptions['port'], array(), $FTPOptions['user'], $FTPOptions['pass']);

				// If the parent folder doesn't exist we must create it
				if (!file_exists(dirname($dest)))
				{
					$folderObject = new JFilesystemWrapperFolder;
					$folderObject->create(dirname($dest));
				}

				// Translate the destination path for the FTP account
				$dest = $pathObject->clean(str_replace(JPATH_ROOT, $FTPOptions['root'], $dest), '/');

				if (!$ftp->store($src, $dest))
				{
					// FTP connector throws an error
					return false;
				}

				$ret = true;
			}
			else
			{
				if (!@ copy($src, $dest))
				{
					JLog::add(JText::sprintf('JLIB_FILESYSTEM_ERROR_COPY_FAILED_ERR01', $src, $dest), JLog::WARNING, 'jerror');

					return false;
				}

				$ret = true;
			}

			return $ret;
		}
	}

Expected result

Do not give an error upon same src and dest

Actual result

It now fails...

System information (as much as possible)

Additional comments

avatar stAn47 stAn47 - open - 16 Oct 2017
avatar joomla-cms-bot joomla-cms-bot - labeled - 16 Oct 2017
avatar stAn47 stAn47 - change - 16 Oct 2017
The description was changed
avatar stAn47 stAn47 - edited - 16 Oct 2017
avatar franz-wohlkoenig franz-wohlkoenig - change - 26 Jan 2018
Status New Information Required
avatar franz-wohlkoenig
franz-wohlkoenig - comment - 26 Jan 2018

Any Comment on this Feature Request?


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/18352.

avatar brianteeman brianteeman - change - 25 Mar 2018
Labels Added: J3 Issue
avatar brianteeman brianteeman - labeled - 25 Mar 2018
avatar franz-wohlkoenig franz-wohlkoenig - change - 16 Apr 2018
Status Information Required Discussion
avatar alikon alikon - change - 5 Jul 2019
Status Discussion Closed
Closed_Date 0000-00-00 00:00:00 2019-07-05 07:48:39
Closed_By alikon
avatar joomla-cms-bot joomla-cms-bot - change - 5 Jul 2019
Closed_By alikon joomla-cms-bot
avatar joomla-cms-bot joomla-cms-bot - close - 5 Jul 2019
avatar joomla-cms-bot
joomla-cms-bot - comment - 5 Jul 2019

Set to "closed" on behalf of @alikon by The JTracker Application at issues.joomla.org/joomla-cms/18352

avatar alikon
alikon - comment - 5 Jul 2019

lack of interest


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/18352.

avatar HLeithner HLeithner - change - 5 Jul 2019
Status Closed New
Closed_Date 2019-07-05 07:48:39
Closed_By joomla-cms-bot
avatar HLeithner
HLeithner - comment - 5 Jul 2019

Fixing it would be better because it's a vaild issue.

avatar HLeithner HLeithner - reopen - 5 Jul 2019
avatar mbabker
mbabker - comment - 5 Jul 2019

If you're going to close issues because "lack of interest", use a more communicative message than that. Remember this is a public platform and people do get email notifications.

avatar alikon
alikon - comment - 5 Jul 2019

what should be "a more communicative message" for an issue opened on 16 Oct 2017 without no response till i've closed it in 05 july 2019, sorry but i'm not an english native speaker, but nevermind,
i'll never close more an old issue , let they stay open forever for future memories, lesson learned

avatar brianteeman
brianteeman - comment - 5 Jul 2019

Can I suggest using these messages that I wrote for the last sprint I organised
https://docs.google.com/document/d/1ODy85pPR6y6OHgyx8SRrZ93hR8JtsJKNyj5AOQrNlmA/edit?usp=sharing

They can even be added as saved replies on github

avatar alikon
alikon - comment - 5 Jul 2019

you should have shared this before, only option 2) and 11 and all was ok 🤣

avatar brianteeman
brianteeman - comment - 5 Jul 2019

You already had it from the Manchester sprint :)

avatar mbabker
mbabker - comment - 5 Jul 2019

i'll never close more an old issue , let they stay open forever for future memories, lesson learned

Closing old items isn't an issue, if:

  • in the case of a feature request, someone decides the project isn't interested in including that request in core
  • in the case of a confirmed bug report, someone decides that behavior is actually the intended behavior or that doing something about it creates more issues than it solves (basically B/C problems)
  • in the case of an unconfirmed bug report, there isn't enough info to do anything with the item and there's no response to requests for more info

The only thing keeping items open does is raise the number in the tabs at the top of the GitHub repo. Trying to arbitrarily close issues that people have been able to confirm as bugs because nobody is interested enough in fixing those bugs doesn't really help matters. It may very well be those issues are hard to address or edge case issues (like a couple of the IE8 related issues, they're still valid since 3.x supports IE8 but they're more than likely going to stay open and unactioned until 3.x EOLs because few are going to care enough to put in the effort to fix compat issues with that old of a browser), but they're still valid.

avatar franz-wohlkoenig franz-wohlkoenig - change - 5 Jul 2019
Status New Discussion
avatar Hackwar Hackwar - change - 18 Feb 2023
Labels Added: No Code Attached Yet bug
Removed: ?
avatar Hackwar Hackwar - labeled - 18 Feb 2023

Add a Comment

Login with GitHub to post a comment