Commit 1e588e61 authored by Stefano Alberto Russo's avatar Stefano Alberto Russo
Browse files

Merge branch 'feature/OpenID' into develop

parents 6e7a544d 39aa1ddd
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -134,6 +134,8 @@
        # MSIE 7 and newer should be able to use keepalive
        BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown

    # Required for the Open ID connect redirects to work properly
    RequestHeader set X-Forwarded-Proto 'https' env=HTTPS        

    </VirtualHost>
</IfModule>
+26 −0
Original line number Diff line number Diff line
from mozilla_django_oidc.auth import OIDCAuthenticationBackend
from .core_app.utils import finalize_user_creation

# Setup logging
import logging
logger = logging.getLogger(__name__)


class RosettaOIDCAuthenticationBackend(OIDCAuthenticationBackend):
    
    def create_user(self, claims):
        
        # Call parent user creation function
        user = super(RosettaOIDCAuthenticationBackend, self).create_user(claims)

        # Add profile, keys etc.
        finalize_user_creation(user)

        return user


    def get_userinfo(self, access_token, id_token, payload):

        # Payload must contain the "email" key
        return payload
+9 −0
Original line number Diff line number Diff line
import os
from django.conf import settings
def export_vars(request):
    data = {}
    if settings.OIDC_RP_CLIENT_ID:
        data['OPENID_ENABLED'] = True
    else:
        data['OPENID_ENABLED'] = False        
    return data
 No newline at end of file
+15 −2
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
        <b>Account ID</b>
        </td>
        <td>
        {{data.user.username}} | <a href="/logout/">Logout</a>
        {{data.user.username}}
        </td>
       </tr>
      
@@ -99,8 +99,21 @@
       </tr>

      </table>
      </form>
      
      <div style="margin-left:10px; margin-top:40px">
        {% if OPENID_ENABLED %}
        <form action="{% url 'oidc_logout' %}" method="post">
        {% csrf_token %}
        <input type="submit" value="logout">
        </form>
        {% else %}
        <form action="/logout/" method="get">
        <input type="submit" value="logout">
        </form>        
        {% endif %}
      </div>

      
      <br/>
      <br/>
+18 −0
Original line number Diff line number Diff line
@@ -44,6 +44,8 @@
                <input type="password" class="form-control" placeholder="Password" name='password'>
                <input type='submit' class="btn btn-lg ha-btn-lg" value='Login' />
                </form>
                {% if OPENID %}
                {% endif %}
              </center>         
            </li>
            <center>
@@ -54,6 +56,22 @@
            </center>
            {% endif %}

            {% if OPENID_ENABLED %}

            <li>
            {% if not user.is_authenticated %}
                <a href="{% url 'oidc_authentication_init' %}">Login with OpenID Conn. &nbsp;</a>
            {% endif %}
            </li>
            {% endif %}

      
        </ul>
        
  
        
        
        
        
    </nav>
    {% endif %}
Loading