Merge pull request #18356 from nextcloud/backport/17935/stable16
[stable16] adding share type circles
This commit is contained in:
commit
d41f36dad5
|
@ -97,7 +97,10 @@ class PublicAuth extends AbstractBasic {
|
||||||
|
|
||||||
// check if the share is password protected
|
// check if the share is password protected
|
||||||
if ($share->getPassword() !== null) {
|
if ($share->getPassword() !== null) {
|
||||||
if ($share->getShareType() === \OCP\Share::SHARE_TYPE_LINK || $share->getShareType() === \OCP\Share::SHARE_TYPE_EMAIL) {
|
|
||||||
|
if ($share->getShareType() === \OCP\Share::SHARE_TYPE_LINK
|
||||||
|
|| $share->getShareType() === \OCP\Share::SHARE_TYPE_EMAIL
|
||||||
|
|| $share->getShareType() === \OCP\Share::SHARE_TYPE_CIRCLE) {
|
||||||
if ($this->shareManager->checkPassword($share, $password)) {
|
if ($this->shareManager->checkPassword($share, $password)) {
|
||||||
return true;
|
return true;
|
||||||
} else if ($this->session->exists('public_link_authenticated')
|
} else if ($this->session->exists('public_link_authenticated')
|
||||||
|
|
|
@ -1329,7 +1329,8 @@ class Manager implements IManager {
|
||||||
*/
|
*/
|
||||||
public function checkPassword(\OCP\Share\IShare $share, $password) {
|
public function checkPassword(\OCP\Share\IShare $share, $password) {
|
||||||
$passwordProtected = $share->getShareType() !== \OCP\Share::SHARE_TYPE_LINK
|
$passwordProtected = $share->getShareType() !== \OCP\Share::SHARE_TYPE_LINK
|
||||||
|| $share->getShareType() !== \OCP\Share::SHARE_TYPE_EMAIL;
|
|| $share->getShareType() !== \OCP\Share::SHARE_TYPE_EMAIL
|
||||||
|
|| $share->getShareType() !== \OCP\Share::SHARE_TYPE_CIRCLE;
|
||||||
if (!$passwordProtected) {
|
if (!$passwordProtected) {
|
||||||
//TODO maybe exception?
|
//TODO maybe exception?
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue