2013-10-06 66 views
3

我有一個使用Assetic來生成一些css文件到磁盤的類。我會直接跳到代碼中。Assetic正在生成具有相同內容的多個文件

在我的佈局頭,我在做這樣的事情:

$assetify = new Assetify(); 
$assetify->setDebug(true); 
$assetify->setAssetDirectory(BASE_DIR . '/public/assets'); 
$assetify->setOutputDirectory(BASE_DIR . '/public/assets/generated'); 
$assetify 
    ->addStylesheet('/assets/css/bootstrap-2.3.2.css') 
    ->addStylesheet('/assets/css/select2-3.4.3.css') 
    ->addStylesheet('/assets/css/main.css'); 

echo $assetify->dump(); 

我 「Assetify」 類通過Assetic運行此。我會貼一下,希望只從dump()功能的相關部分:

// The Asset Factory allows us to not have to do all the hard work ourselves. 
$factory = new AssetFactory($this->assetDirectory, $this->debug); 
$factory->setDefaultOutput('/generated/*.css'); 

// The Filter Manager allows us to organize filters for the asset handling. 
// For other filters, see: https://github.com/kriswallsmith/assetic 
$fm = new FilterManager(); 
$fm->set('yui_css', new Yui\CssCompressorFilter('/usr/local/bin/yuicompressor-2.4.7.jar')); 
$fm->set('yui_js', new Yui\JsCompressorFilter('/usr/local/bin/yuicompressor-2.4.7.jar')); 
$factory->setFilterManager($fm); 

// The Asset Manager allows us to keep our assets organized. 
$am = new AssetManager(); 
$factory->setAssetManager($am); 

// The cache-busting worker prefixes every css with what amounts to a version number. 
$factory->addWorker(new CacheBustingWorker()); 

$assetCollection = array(); 
foreach ($assetGroups as $assetGroup) { 
    foreach ($assetGroup as $media => $items) { 
     $fileCollection = array(); 
     foreach ($items as $item) { 
      // Add this asset to the asset collection. 
      $fileCollection[] = new FileAsset($item); 
     } 
     $assetCollection[] = new AssetCollection($fileCollection); 
    } 
} 

$assetCollection = new AssetCollection($assetCollection); 
$am->set('base_css', $assetCollection); 

// Generate the required assets. Prefixing a filter name with a question mark 
// will cause that filter to be omitted in debug mode. 
$asset = $factory->createAsset(
    array('@base_css'), 
    array('?yui_css') 
); 

// Configure an internal file system cache so we don't regenerate this file on every load. 
$cache = new AssetCache(
    $asset, 
    new FilesystemCache($this->outputDirectory) 
); 

// And generate static versions of the files on disk. 
$writer = new AssetWriter($this->assetDirectory); 
$writer->writeAsset($cache); 

這會產生兩個不同的文件,87229eb-f47a352.cssa37c1589762f39aee5bd24e9405dbdf9。這些文件的內容完全相同。似乎每一次都會生成87229eb-f47a352.css文件,除非文件內容發生更改(這是我所希望的),否則不會重新生成其他文件。如果我註釋掉$writer->writeAsset($cache),則沒有文件寫入磁盤。

我缺少什麼明顯的配置?我很感激幫助,謝謝。

+0

你得到這個工作?我正在嘗試做類似的事情。你的班級看起來非常有用,你能分享嗎? –

+0

我很抱歉,但直到今天我纔看到通知!差不多兩年後。哇靠。非常感謝你的回答,我接受了。我從來沒有真正理解它,並且不得不繼續前進,所以我最終讓我的腳本只是在生成後刪除每個非擴展文件。 – Vic

回答

1

我能夠大致複製你的代碼,並得到相同的結果。

我試圖得到與我想要的相同的結果,但最終編寫了自己的代碼來緩存和提供靜態文件。

這不是完整的,但它是工作。它具有以下特點:如果指定$文件名

  • 您可以選擇的緩存文件不同的頁面
  • 您可以選擇創建您的發行版本的文件或刪除以前的版本
  • 緩存的文件會僅當源文件發生更改時纔會生成到目標文件夾
  • 您只需將代碼放入類或函數並返回要投放的url即可。

希望它能幫助:)

<?php 
    use Assetic\Factory\AssetFactory; 
    use Assetic\AssetManager; 
    use Assetic\FilterManager; 
    use Assetic\Asset\AssetCollection; 
    use Assetic\Asset\FileAsset; 
    use Assetic\Filter\JSMinFilter; 

    // JavaScript Collection 
    $js_collection[] = new FileAsset(SCRIPT_PATH . 'jquery.js'); 
    $js_collection[] = new FileAsset(SCRIPT_PATH . 'production.js'); 
    if (file_exists(SCRIPT_PATH . $page_info['name'] . '.js')) { 
     $js_collection[] = new FileAsset(SCRIPT_PATH . $page_info['name'] . '.js'); 
    } 

    // CSS Collection 
    $css_collection[] = new FileAsset(STYLE_PATH . 'theme.css'); 
    if (file_exists(STYLE_PATH . $page_info['name'] . '.css')) { 
     $css_collection[] = new FileAsset(STYLE_PATH . $page_info['name'] . '.css'); 
    } 

    // The Filter Manager allows us to organize filters for the asset handling. 
    $fm = new FilterManager(); 
    $fm->set('js', new JSMinFilter()); 

    $js = new AssetCollection (
     $js_collection 
    ); 
    $js->setTargetPath(SCRIPT_PATH . 'static'); 

    $css = new AssetCollection (
     $css_collection 
    ); 
    $css->setTargetPath(STYLE_PATH . 'static'); 

    $am = new AssetManager(); 
    $am->set('js', $js); 
    $am->set('css', $css); 



    //** TO DO: put the below in a class and return the static file names **// 

    // options 
    $seperator = '-'; 
    $filename = $page_info['name']; 
    $versions = false; 

    // get a list of all collection names 
    $collections = $am->getNames(); 

    // get each collection 
    foreach ($collections as $collection_name) { 

     // get the collection object 
     $collection = $am->get($collection_name); 

     // ensure file types are identical 
     $last_ext = false; 
     foreach ($collection as $leaf) { 
      $ext = strtolower(pathinfo($leaf->getSourcePath(), PATHINFO_EXTENSION)); 
      if (!$last_ext || $ext == $last_ext) { 
       $last_ext = $ext; 
      } else { 
       throw new \RuntimeException('File type mismatch.'); 
      } 
     } 

     // get the highest last-modified value of all assets in the current collection 
     $modified_time = $collection->getLastModified(); 

     // get the target path 
     $path = $collection->getTargetPath(); 

     // the target path must be set 
     if (!$path) { 
      throw new \RuntimeException('Target path not specified.'); 
     } 

     // build the filename to check 
     $file = ($filename) ? $filename . $seperator . $modified_time . '.' . $ext : $modified_time . '.' . $ext; 
     $cached_file = $path . '/' . $file; 

     // the file doesn't exist so we need to minify, dump and save as new cached file 
     if (!file_exists($cached_file)) { 

      // create the output dir if it doesnt exist 
      if (!is_dir($path) && false === @mkdir($path, 0777, true)) { 
       throw new \RuntimeException('Unable to create directory ' . $path); 
      } 

      // apply the filters 
      if ($fm->has($collection_name)) { 
       $collection->ensureFilter($fm->get($collection_name)); 
      } 

      // If not versioned, delete previous version of this file 
      if (!$versions) { 
       if ($filename) { 
        foreach (glob($path . '/' . $filename . $seperator . '*.' . $ext) as $searchfile) { 
         @unlink($searchfile); 
        } 
       } else { 
        foreach (glob($path . '/*.' . $ext) as $searchfile) { 
         @unlink($searchfile); 
        } 
       } 
      } 

      // put the contents in the file 
      if (false === @file_put_contents($cached_file, $collection->dump())) { 
       throw new \RuntimeException('Unable to write file ' . $cached_file); 
      } 
     } 

     // return the cached file 
     echo 'output: ' . $cached_file . '<br>'; 
    } 
    exit; 
    ?> 
相關問題