Blog


Multiple environments on NewRelic

About

New Relic it’s a powerful tool that handles application monitoring.




Setup streaming replication with PostgreSQL 10

Requirements

  • Ubuntu 16.04 or Ubuntu 18.04
  • PostgreSQL 10
  • 2 servers (a master and a slave)

In case you don’t know how to install PostgreSQL you can follow this tutorial from DigitalOcean.




Seguridad: Las URLS en Facebook y los anuncios

El día de hoy en Facebook me topé con una publicidad engañosa de unos de los bancos más grandes del mundo. A lo procedí a ingresar a la página para reportarla como falsa tras comprobar que realmente era falsa y observé algo muy extraño, que la URL era: https://www.facebook.com/BBVAContinentaI/ lo que visualmente se ve de la siguiente manera:

captura-de-pantalla-2016-10-16-a-las-12-01-06

Captura de la URL de la página falsa en Facebook.

Ahora veamos como se ve la URL de la página oficial es: https://www.facebook.com/BBVAContinental/.

captura-de-pantalla-2016-10-16-a-las-12-03-42

Captura de la URL de la página oficial en Facebook.

¿Cuál es la diferencia?

La igualdad gráfica entre la “I” (i – vocal) mayúscula y la “l” (L – ele) minúscula.

¿Debería Facebook normalizar la URL de las páginas a minúsculas?

No, porque más importante que el cambio de mayúsculas a minúsculas son los filtros para empresas que anuncian en Facebook. Diariamente cientos páginas de Facebook fraudulentas que poseen el mismo nombre de las páginas a las cuales replican publican anuncios con un fin maligno.

Mejor control:

  • Páginas que poseen el mismo nombre que páginas verificadas no deberían ser autorizados a publicar anuncio alguno.
  • No es posible reportar anuncios como posible suplantación o fraude.

Opciones actuales para el reporte de anuncios.

Opciones actuales para el reporte de anuncios.

  • El reporte o denuncia de posibles fan pages falsos no permite que la página sea revisada por el personal de Facebook. Este punto es sumamente importante pues actualmente el proceso de reporte es de dos pasos y no permite reportarlo al personal de Facebook.



Weight distribution matters.

Next time, you’ll know it.




Django Rest Framework auto assign current user on creation

If you use the ModelViewSet provided by Django Rest Framework you overwrite the perform_create method on the ModelViewSet to auto set the current user to the model before saving.

class PostViewSet(viewsets.ModelViewSet):
  queryset         = Post.objects.all()
  serializer_class = serializers.PostSerializer

  def perform_create(self, serializer):
    kwargs = {
      'user': self.request.user # Change 'user' to you model user field.
    }

    serializer.save(**kwargs)

As usual my recommendation is to create “Mixin” like this one:

class UserCreateMixin(object):
  """
  By default the user field is "user" you can change it
  to your model "user" field.

  Usage:
  class PostViewSet(UserCreateMixin, viewsets.ModelViewSet):
    # ViewsSet required info...
    user_field = 'creator'
  """
  user_field = 'user'

  def get_user_field(self):
    """
    You can dynamically change the user field
    """
    return self.user_field

  def perform_create(self, serializer):
    kwargs = {
      self.get_user_field(): self.request.user
    }

    serializer.save(**kwargs)

If you think that there is a better way, let us know in the comments bellow.




Upload files to Django Rest Framework using AngularJS

Encoding the image to “base64”, send it to our DRF endpoint and on our DRF serializers change the ImageField to Base64ImageField was the implementation I used:

On the client side, on my angular app:

angular.controller('ImageUploadFormCtrl', function($scope, Photo){
  $scope.submitForm = function(isValid){
    if(isValid){
      f = new FileReader(); // or $window.FileReader()
      
      f.onload = function () {
        $scope.formData.image = f.result; // This is a base64 string

        Photo.save({}, $scope.formData).$promise.then(function(data){
          // 200 Response
          alert('Client image successfully updated.');
        }, function(error){
          // 400 Response
          console.log('Error', error);
          alert('An error has ocurred.');
        })
      };      
      
      // Read the file selected on the field with ID "image-field"
      f.readAsDataURL(document.getElementById('image-field').files[0]);
    }
  }
});

On the server side on my Django app, specifically on the serializers.py file:

import base64, uuid
from django.core.files.base import ContentFile

class Base64ImageField(serializers.ImageField):
  def to_internal_value(self, data):
    if isinstance(data, basestring) and data.startswith('data:'): # You can change "data:" to "data/image:"
      format, imgstr = data.split(';base64,')
      ext  = format.split('/')[-1]
      id   = uuid.uuid4()
      data = ContentFile(base64.b64decode(imgstr), name=id.urn[9:])

    return super(Base64ImageField, self).to_internal_value(data)

class PhotoSerializer(serializers.ModelSerializer):
  image = Base64ImageField(allow_empty_file=False)
  
  class Meta:
    fields           = ('id', 'image')
    model            = Photo
    read_only_fields = ('id', )

I found out that this is the cleaner way to do this. If you have another alternative, please share it.




Require activated virtualenv on PIP

I highly recommended to separate your working environments so every project has their own set of packages. To do this just edit the ~/.bash_profile file.

export PIP_REQUIRE_VIRTUALENV=true
# define a "global pip" function to use outside virtualenv:
gpip(){
    PIP_REQUIRE_VIRTUALENV="" pip "$@"
}

After that, reload the source file with this command source ~/.bash_profile.




WordPress HTTPS Redirection

You don’t need to install any kind plugin to achieve this. Just go to “Settings” > “General” and them update your “WordPress Address” and the “Site Address“. Change the “http” to “https” as the following image.

captura-de-pantalla-2016-09-08-a-las-17-26-30

Really, that’s it! and you are good to go.




Scaling Django Properly

I’m in love with Django and as a love we should be able to know how to scale Django properly that’s why I’m sharing this video with you. So you can make your Django deployment “greater again” (no pun intended).