-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: summersab <[email protected]> clean up php lint update autoloaders
- Loading branch information
Showing
5 changed files
with
157 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* @copyright Copyright (c) 2023 Andrew Summers | ||
* | ||
* @author Andrew Summers | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace OCP\DB\QueryBuilder\Events; | ||
|
||
use OCP\EventDispatcher\Event; | ||
use OCP\DB\QueryBuilder\IQueryBuilder; | ||
|
||
/** | ||
* This event is used by apps to intercept, inspect, and potentially modify | ||
* the results of database queries after execution. This can be used for deep | ||
* integrations, restricting user access to certain data, redacting information, | ||
* etc. | ||
* | ||
* @see https://docs.nextcloud.com/server/latest/developer_manual/digging_deeper/projects.html | ||
* @since 26.0.0 | ||
*/ | ||
class AfterQueryExecuted extends Event { | ||
private IQueryBuilder $queryBuilder; | ||
private $result; | ||
|
||
public function __construct(IQueryBuilder $queryBuilder, $result) { | ||
$this->queryBuilder = $queryBuilder; | ||
$this->result = $result; | ||
} | ||
|
||
public function getQueryBuilder() { | ||
return $this->queryBuilder; | ||
} | ||
|
||
public function setQueryBuilder() { | ||
return $this->queryBuilder; | ||
} | ||
|
||
public function getResult() { | ||
return $this->result; | ||
} | ||
|
||
public function setResult() { | ||
return $this->result; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* @copyright Copyright (c) 2023 Andrew Summers | ||
* | ||
* @author Andrew Summers | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace OCP\DB\QueryBuilder\Events; | ||
|
||
use OCP\EventDispatcher\Event; | ||
use OCP\DB\QueryBuilder\IQueryBuilder; | ||
|
||
/** | ||
* This event is used by apps to intercept, inspect, and potentially modify | ||
* database queries prior to execution. This can be used for deep integrations, | ||
* restricting user access to certain data, redacting information, etc. | ||
* | ||
* The result field can optionally be set by the event listener by executing the | ||
* query in the event handler logic. This allows apps to inspect the results, | ||
* use try/catch blocks around the query execution, and/or modify/re-execute the | ||
* query if necessary. If the result field is not set, the QueryBuilder class | ||
* will execute the query as expected by default. | ||
* | ||
* @see https://docs.nextcloud.com/server/latest/developer_manual/digging_deeper/projects.html | ||
* @since 26.0.0 | ||
*/ | ||
class BeforeQueryExecuted extends Event { | ||
private IQueryBuilder $queryBuilder; | ||
private $result = null; | ||
|
||
public function __construct(IQueryBuilder $queryBuilder) { | ||
$this->queryBuilder = $queryBuilder; | ||
} | ||
|
||
public function getQueryBuilder() { | ||
return $this->queryBuilder; | ||
} | ||
|
||
public function setQueryBuilder() { | ||
return $this->queryBuilder; | ||
} | ||
|
||
public function getResult() { | ||
return $this->result; | ||
} | ||
|
||
public function setResult() { | ||
return $this->result; | ||
} | ||
} |