Skip to content

Commit

Permalink
Move SassTask to own repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
siad007 committed Feb 7, 2021
1 parent 372887d commit 13d5209
Show file tree
Hide file tree
Showing 7 changed files with 1,398 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/.idea/
/vendor/
/composer.lock
/custom.task.properties
/custom.type.properties
31 changes: 31 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "phing/task-sass",
"description": "SassTask.",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "LGPL-3.0-only",
"type": "phing-extension",
"authors": [
{
"name": "Siad Ardroumli",
"email": "[email protected]"
}
],
"require": {
"php": ">= 7.1"
},
"require-dev": {
"phing/phing": "3.0.x-dev",
"scssphp/scssphp": "~1.0"
},
"autoload": {
"psr-4": {
"Phing\\Task\\Ext\\": "src/"
}
},
"extra": {
"phing-custom-taskdefs": {
"sass": "Phing\\Task\\Ext\\SassTask"
}
}
}
99 changes: 99 additions & 0 deletions src/SassCompiler.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<?php
/**
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information please see
* <http://phing.info>.
*/

declare(strict_types=1);

namespace Phing\Task\Ext;

use Exception;
use Phing\Exception\BuildException;
use Phing\Project;

class SassCompiler implements SassTaskCompiler
{

/**
* @var string
*/
private $executable;

/**
* @var string
*/
private $flags;

public function __construct(string $executable, string $flags)
{
$this->executable = $executable;
$this->flags = $flags;
}

/**
* @throws BuildException
*/
public function compile(string $inputFilePath, string $outputFilePath, bool $failOnError): void
{
try {
$output = $this->executeCommand($inputFilePath, $outputFilePath);
if ($failOnError && $output[0] !== 0) {
throw new BuildException(
"Result returned as not 0. Result: {$output[0]}",
Project::MSG_INFO
);
}
} catch (Exception $e) {
if ($failOnError) {
throw new BuildException($e);
}
}
}

/**
* Executes the command and returns return code and output.
*
* @param string $inputFile Input file
* @param string $outputFile Output file
*
* @access protected
* @throws BuildException
* @return array array(return code, array with output)
*/
private function executeCommand($inputFile, $outputFile)
{
// Prevent over-writing existing file.
if ($inputFile == $outputFile) {
throw new BuildException('Input file and output file are the same!');
}

$output = [];
$return = null;

$fullCommand = $this->executable;

if (strlen($this->flags) > 0) {
$fullCommand .= " {$this->flags}";
}

$fullCommand .= " {$inputFile} {$outputFile}";

exec($fullCommand, $output, $return);

return [$return, $output];
}
}
Loading

0 comments on commit 13d5209

Please sign in to comment.