Avoid problems with too long URI (should only happen some RSS feeds)
This commit is contained in:
parent
00011dfeae
commit
3d14977b73
1 changed files with 8 additions and 2 deletions
|
@ -22,11 +22,14 @@ class ItemURI extends BaseObject
|
||||||
*/
|
*/
|
||||||
public static function insert($fields)
|
public static function insert($fields)
|
||||||
{
|
{
|
||||||
if (!DBA::exists('item-uri', ['uri' => $fields['uri']])) {
|
// If the URI gets too long we only take the first parts and hope for best
|
||||||
|
$uri = substr($fields['uri'], 0, 255);
|
||||||
|
|
||||||
|
if (!DBA::exists('item-uri', ['uri' => $uri])) {
|
||||||
DBA::insert('item-uri', $fields, true);
|
DBA::insert('item-uri', $fields, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
$itemuri = DBA::selectFirst('item-uri', ['id'], ['uri' => $fields['uri']]);
|
$itemuri = DBA::selectFirst('item-uri', ['id'], ['uri' => $uri]);
|
||||||
|
|
||||||
if (!DBA::isResult($itemuri)) {
|
if (!DBA::isResult($itemuri)) {
|
||||||
// This shouldn't happen
|
// This shouldn't happen
|
||||||
|
@ -45,6 +48,9 @@ class ItemURI extends BaseObject
|
||||||
*/
|
*/
|
||||||
public static function getIdByURI($uri)
|
public static function getIdByURI($uri)
|
||||||
{
|
{
|
||||||
|
// If the URI gets too long we only take the first parts and hope for best
|
||||||
|
$uri = substr($uri, 0, 255);
|
||||||
|
|
||||||
$itemuri = DBA::selectFirst('item-uri', ['id'], ['uri' => $uri]);
|
$itemuri = DBA::selectFirst('item-uri', ['id'], ['uri' => $uri]);
|
||||||
|
|
||||||
if (!DBA::isResult($itemuri)) {
|
if (!DBA::isResult($itemuri)) {
|
||||||
|
|
Loading…
Reference in a new issue