0

我正在尝试在 WHMCS 的模块中使用 ionCube 加密 tpl 文件,而无需修改 WHMCS smarty.class 文件。任何人都知道我该怎么做?

有关详细信息,请参阅http://www.ioncube.com/sa_encoder.php?page=smarty_patch

4

2 回答 2

2

当然你需要有ionCube Php Encoder,你需要创建项目,添加文件,然后在GUI中Project settings -> Source你应该右键点击你的TPL文件并选择“加密非PHP文件”。如果不应用 ionCube 文档中的 Smarty 补丁,您将无法做到这一点。

您还可以扩展 Smarty 类。

对于Smarty 2,代码很简单:

<?php

class MyTemplate extends Smarty {

// Replacement function for _read_file() in Smarty.class.php to add support
// for reading both ionCube encrypted templates and plain text templates.
// Smarty.class.php must be encoded by the creator of the templates for
// ioncube_read_file() to decode encrypted template files

    function _read_file($filename)
    {
        $res = false;

        if (file_exists($filename)) {
            if (function_exists('ioncube_read_file')) {
                $res = ioncube_read_file($filename);
                if (is_int($res)) $res = false;
            }
            else if ( ($fd = @fopen($filename, 'rb')) ) {
                $res = ($size = filesize($filename)) ? fread($fd, $size) : '';
                fclose($fd);
            }
        }

        return $res;
    }    
}

并且您应该创建此类的对象以使用修改后的代码。

对于Smarty 3,它有点复杂。

您需要创建MyFileResource如下类:

<?php
//MyFileResource.php    

class MyFileResource extends Smarty_Internal_Resource_File {

    /**
     * Load template's source from file into current template object
     *
     * @param  Smarty_Template_Source $source source object
     * @return string                 template source
     * @throws SmartyException        if source cannot be loaded
     */
    public function getContent(Smarty_Template_Source $source)
    {       
        if ($source->timestamp) {                                    

            if (file_exists($source->filepath) && function_exists('ioncube_read_file')) {
                $res = ioncube_read_file($source->filepath);
                if (is_int($res)) {
                    $res = false;
                }
                return $res;                  
            }
            else {
                return file_get_contents($source->filepath); 
            }                                
        }

        if ($source instanceof Smarty_Config_Source) {
            throw new SmartyException("Unable to read config {$source->type} '{$source->name}'");
        }
        throw new SmartyException("Unable to read template {$source->type} '{$source->name}'");
    }

}

在您创建 Smarty 对象的地方添加一些代码。

假设您以这种方式创建了 Smarty 对象:

require '../libs/Smarty.class.php';

$smarty = new Smarty;

您应该将其更改为:

require '../libs/Smarty.class.php';

require('MyFileResource.php');

$smarty = new Smarty;

$smarty->registerResource('file', new MyFileResource());

这样,每次您从文件中读取模板时,您都会使用 MyFileResource 类。我没有测试过这段代码,但它应该可以工作。根据您的设置,您可能需要删除所有已编译的模板文件以再次重新生成它们。

于 2014-06-11T21:39:15.803 回答
1

您可以使用非 PHP 文件加密功能加密模板文件,但需要修改 smarty 引擎才能处理解密。如果不这样做,您只会看到显示的加密内容。为此使用 ioncube_read_file() API 函数,它将无缝处理加密和非加密文件。请注意,必须对调用该函数的文件进行编码,因为让一个未受保护的文件调用解密例程是没有意义的。

于 2014-06-12T08:53:24.660 回答