From: Michael Gapczynski Date: Fri, 27 Jul 2012 22:05:18 +0000 (-0400) Subject: Set the user id when authenticating user for Ampache, fixes bug oc-219 X-Git-Tag: v4.0.6~6 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d07b8448d1e96f07c6e6b41293797a89a4530c3d;p=nextcloud-server.git Set the user id when authenticating user for Ampache, fixes bug oc-219 --- diff --git a/apps/media/lib_ampache.php b/apps/media/lib_ampache.php index f5c91661abe..7c4e1dac3f6 100644 --- a/apps/media/lib_ampache.php +++ b/apps/media/lib_ampache.php @@ -71,6 +71,7 @@ class OC_MEDIA_AMPACHE{ $pass=$users[0]['user_password_sha256']; $key=hash('sha256',$time.$pass); if($key==$auth){ + $token=hash('sha256','oc_media_'.$key); OC_MEDIA_COLLECTION::$uid=$users[0]['user_id']; $date=date('c');//todo proper update/add/clean dates @@ -144,6 +145,7 @@ class OC_MEDIA_AMPACHE{ $users=$query->execute(array($auth))->fetchAll(); if(count($users)>0){ OC_MEDIA_COLLECTION::$uid=$users[0]['user_id']; + OC_User::setUserId($users[0]['user_id']); return $users[0]['user_id']; }else{ return false;