diff --git a/module/VuFind/src/VuFind/Content/Covers/ContentCafe.php b/module/VuFind/src/VuFind/Content/Covers/ContentCafe.php index f0631fd606a1ea81a7753c03650888039e211d3f..981e5c5f5f32bb09c419b23372b900939e125d6c 100644 --- a/module/VuFind/src/VuFind/Content/Covers/ContentCafe.php +++ b/module/VuFind/src/VuFind/Content/Covers/ContentCafe.php @@ -62,7 +62,7 @@ class ContentCafe extends \VuFind\Content\AbstractCover $this->password = $config->pw; $this->baseURL = isset($config->url) ? $config->url : 'http://contentcafe2.btol.com'; - $this->supportsIsbn = $this->cacheAllowed = true; + $this->supportsUpc = $this->supportsIsbn = $this->cacheAllowed = true; } /** @@ -78,12 +78,17 @@ class ContentCafe extends \VuFind\Content\AbstractCover public function getUrl($key, $size, $ids) { $size = strtoupper(substr($size, 0, 1)); - if (!isset($ids['isbn'])) { + + if (isset($ids['isbn'])) { + $value = $ids['isbn']->get13(); + } elseif (isset($ids['upc'])) { + $value = urlencode($ids['upc']); + } else { return false; } - $isbn = $ids['isbn']->get13(); + return $this->baseURL . '/ContentCafe/Jacket.aspx' . "?UserID={$key}&Password={$this->password}&Return=1" . - "&Type={$size}&Value={$isbn}&erroroverride=1"; + "&Type={$size}&Value={$value}&erroroverride=1"; } }