From 19fa47e678cef0cb3878e9378d1e178651035ae4 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Fri, 3 May 2019 16:29:06 +0200 Subject: Add @param ['additional_data'] Additional data to be included in checksum --- itjs.class | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/itjs.class b/itjs.class index 85d5d11..174feab 100644 --- a/itjs.class +++ b/itjs.class @@ -189,6 +189,8 @@ static function strip($code) /** * Compute checksum for list of files * @param $fnlist Either comma separated UNTRUSTED url (will check itjs/ and lib.search.ch/itjs/) or array of TRUSTED filenames + * @param $p['short_expire'] Check filemtime and generate short expires for new files + * @param $p['additional_data'] Additional data to be included in checksum * @return Checksum for given files */ static function checksum($fnlist, $p = array()) @@ -199,7 +201,7 @@ static function checksum($fnlist, $p = array()) foreach (is_array($fnlist) ? $fnlist : itjs::filenames($fnlist) as $filename) $filenames[] = !file_exists($filename) && file_exists($t = it::replace(array('^/www/[^/]*' => "/www/lib.search.ch"), $filename)) ? $t : $filename; - $key = "itjs_" . md5(join("", it::map('"$v" . @filemtime("$v")', $filenames))); + $key = "itjs_" . md5(join("", it::map('"$v" . @filemtime("$v")', $filenames)) . '|' . json_encode($p['additional_data'])); if ($filenames && $p['short_expire'] && (time() - max(@array_map('filemtime', $filenames)) < 60)) return "-"; # trigger short expire, our file may not yet be up to date on other slaves -- cgit v1.2.3