Skip to content

Instantly share code, notes, and snippets.

View renta's full-sized avatar

Vasiliy Toporov renta

View GitHub Profile
@renta
renta / gwt_token_extractor.go
Last active May 19, 2021 20:53
Gin framework JWT token extractor middleware
package gin
import (
"crypto/rsa"
"net/http"
"github.com/gin-gonic/gin"
"github.com/lestrrat-go/jwx/jwa"
"github.com/lestrrat-go/jwx/jwt"
)
@renta
renta / OrSearchFilter.php
Last active August 19, 2021 17:39
Custom OR filter for an Api Platform
<?php
namespace App\Filter;
use ApiPlatform\Core\Bridge\Doctrine\Orm\Filter\AbstractContextAwareFilter;
use ApiPlatform\Core\Bridge\Doctrine\Orm\Util\QueryNameGeneratorInterface;
use Doctrine\ORM\QueryBuilder;
final class OrSearchFilter extends AbstractContextAwareFilter
{