-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from smarinier/fix/138/missing_worker_policy
fix: #138 Missing worker policy when launching assistant
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace OCA\Assistant\Listener; | ||
|
||
use OCP\AppFramework\Http\ContentSecurityPolicy; | ||
use OCP\EventDispatcher\Event; | ||
use OCP\EventDispatcher\IEventListener; | ||
use OCP\Security\CSP\AddContentSecurityPolicyEvent; | ||
|
||
/** | ||
* @template-implements IEventListener<AddContentSecurityPolicyEvent> | ||
*/ | ||
class CSPListener implements IEventListener { | ||
|
||
public function __construct( | ||
) { | ||
} | ||
|
||
public function handle(Event $event): void { | ||
if (!($event instanceof AddContentSecurityPolicyEvent)) { | ||
return; | ||
} | ||
|
||
$csp = new ContentSecurityPolicy(); | ||
$csp->addAllowedWorkerSrcDomain('blob:'); | ||
$event->addPolicy($csp); | ||
} | ||
} |