Skip to content

Instantly share code, notes, and snippets.

View silasrm's full-sized avatar

Silas Ribas Martins silasrm

View GitHub Profile

I have managed to install this… and make it work. I implemented it for Facebook and Google, but you can extend it. My solution it is mostly as described in #116, with a bit of more code presented. The key aspects that lack in the #116 presentation (IMO) are:

  • the registration as service of your custom FOSUBUserProvider (with the necessary parameters)
  • set the service for oauth_user_provider in the security.yml with your custom created service

Here are the steps:

  1. Routing. In routing.yml I have added all the routes for both bundles.
  2. Configuration. I have set the config.yml mostly as it is presented in the HWIOAuthBundle.
  3. Security. I have set the security.yml mostly as it is presented in the HWIOAuthBundle (though my routes are using /login pattern, not /connect). Also, the oauth_user_provider is set for my custom service.
@silasrm
silasrm / phpstorm-vs-sublimetext-shortcuts.md
Last active March 27, 2025 15:23
Teclas de atalhos do PHPStorm com funções semelhantes ao Sublime Text, e outras interessantes.

#Teclas de atalhos do PHPStorm com funções semelhantes ao Sublime Text, e outras interessantes.

Sublime Text PHPStorm Função
CMD+P CMD+Shift+O Busca por arquivos no projeto
CMD+R CMD+F12 (1) Lista os métodos da classe e outros símbolos
CMD+F CMD+F Busca no arquivo
CMD+Option+F CMD+R Busca e troca os valores no arquivo
CMD+Shift+F CMD+Shift+F Busca, busca e troca e outros em um determinado caminho com várias regras.
CMD+D (2) Option+Up (2) Seleciona palavra
Delivered-To: [email protected]
Received: by 10.194.200.9 with SMTP id jo9csp116079wjc;
Wed, 4 Jun 2014 05:57:13 -0700 (PDT)
X-Received: by 10.68.170.66 with SMTP id ak2mr62431106pbc.5.1401886633031;
Wed, 04 Jun 2014 05:57:13 -0700 (PDT)
Return-Path: <[email protected]>
Received: from p3nlsmtp19.shr.prod.phx3.secureserver.net (p3nlsmtp19.shr.prod.phx3.secureserver.net. [72.167.234.244])
by mx.google.com with ESMTP id ez5si5552891pbc.174.2014.06.04.05.57.12
for <[email protected]>;
@silasrm
silasrm / explicação
Last active June 22, 2016 12:25
AngularJS
AngularACL
Criar as classes:
UserObj, onde é obrigatório ter a as propriedades:
- isLogged: true|false
- roles: array
- name: string
Security, onde irá ter métodos para checagem de permissão, recebendo o usuário (instância de UserObj)
e o nome da rota, onde irá checar se a rota existe, e se existir, checa se o usuário possui alguma das
roles que a rota necessita.
@silasrm
silasrm / dateRange.filter.js
Last active August 29, 2015 14:04
Filtro de período para ngRepeat do AngularJS
// ########################################################################### //
// ########################################################################### //
// - DateRange - //
// ########################################################################### //
// #### Adaptado de http://stackoverflow.com/a/21176675/2417962 ##### //
// ########################################################################### //
// #### Exemplos: ##### //
// #### 1. Filtra os registros até data de hoje, usando a ##### //
// #### propriedade 'data_ocorrencia' (sem aspas) do objeto, ##### //
// #### sem incluir a data de hoje ##### //
@silasrm
silasrm / html2plaintext.filter.js
Last active August 29, 2015 14:04
Filtra códigos html e deixa somente texto
// ########################################################################### //
// ########################################################################### //
// - Html2Plaintext - //
// ########################################################################### //
// ########################################################################### //
define(
[
'app',
],
function(app) {
@silasrm
silasrm / truncate.filter.js
Last active August 29, 2015 14:04
Filtro que trunca uma string e adiciona uma string no final (por default sendo '...')
// ########################################################################### //
// ########################################################################### //
// - Truncate - //
// ########################################################################### //
// ########################################################################### //
/**
* Truncate Filter
* @Param text
* @Param length, default is 10
* @Param end, default is "..."
@silasrm
silasrm / Meu\AppBundle\EventListener\UploadListener.php
Last active November 9, 2017 14:52
Listener de upload para OneupUploaderBundle que integra com Plupload.
<?php
namespace Meu\AppBundle\EventListener;
use Oneup\UploaderBundle\Event\PostPersistEvent;
class UploadListener
{
protected $service;
@silasrm
silasrm / cap-first.sql
Created November 26, 2014 22:38
Função para MySQL para mudar a caixa do texto para Título (CamelCase) Ref: http://joezack.com/2008/10/20/mysql-capitalize-function/
DELIMITER $$
CREATE FUNCTION CAP_FIRST (input VARCHAR(255))
RETURNS VARCHAR(255)
DETERMINISTIC
BEGIN
DECLARE len INT;
DECLARE i INT;
/*
verifica_cpf_cnpj
Verifica se é CPF ou CNPJ
@see http://www.tutsup.com/
*/
function verifica_cpf_cnpj ( valor ) {
// Garante que o valor é uma string