Skip to content
Snippets Groups Projects
Commit fb983c3c authored by Wilson JALLET's avatar Wilson JALLET :money_with_wings:
Browse files

Fixed auth

Updated templates
parent 65d345b0
No related branches found
No related tags found
No related merge requests found
{
"ldap": {
"server": "ldap://frankiz.eleves.polytechnique.fr:636",
"server": "ldap://frankiz.eleves.polytechnique.fr:389",
"searchBase": "ou=eleves,dc=frankiz,dc=net",
"searchFilter": "(uid={{username}})"
},
......
......@@ -9,6 +9,7 @@ body {
form {
margin-bottom: 1em;
margin-top: 1em;
}
.form-group {
......
/**
* @file ldap_auth
* @summary Setup de l'auth ldap avec passport-ldapauth
* @summary Configuration de l'authentification LDAP du backend via passport-ldap
*/
import passport from 'passport';
import LdapStrategy from 'passport-ldapauth';
import session from 'express-session';
import fs from 'fs';
let config = JSON.parse(fs.readFileSync('config.json', 'utf8'));
passport.use(new LdapStrategy({
server: {
url: config.ldap.server,
searchBase: config.ldap.searchBase,
searchFilter: config.ldap.searchFilter
}
}));
function setupLdapAuth(server) {
var config = JSON.parse(fs.readFileSync('config.json', 'utf8'));
passport.use(new LdapStrategy({
server: {
url: config.ldap.server,
searchBase: config.ldap.searchBase,
searchFilter: config.ldap.searchFilter
}
}));
// Define new login strategy
server.use(session({
secret: config.sessionSecret,
//store: a modifier avant de lancer en prod
......
......@@ -45,6 +45,7 @@ const typeDefs = `
type Group {
name: String!
id: ID!
website: String
updatedAt: String!
description: String
school: String!
......@@ -62,8 +63,10 @@ const schema = makeExecutableSchema({
resolvers
});
// Charge le middleware express pour GraphQL
server.use('/graphql', bodyParser.json(), graphqlExpress({schema}));
// GraphiQL est une console interactive pour faire des requêtes au schéma GraphQL
server.use('/graphiql', graphiqlExpress({ endpointURL: '/graphql'}));
......
......@@ -2,8 +2,9 @@ extends layout.pug
block content
h1 Welcome to API server
h2 Query the database
p Hello, world! This is server talking to you live on port #{port}!
p "Interface BDD" du back
p You can use the REST API to query the database using the form below.
form(action="/db", method="get")
div.form-group
label(for="table") Table
......@@ -13,7 +14,11 @@ block content
input.form-control(type="search", name="columns")
button.form-control(type="submit") Search
|
a(href="/graphql") Check GraphQL
h2 GraphiQL
p
| GraphiQL is an interactive environment to make GraphQL
| requests to the database.
a(href="/graphiql") Check it out.
|
form(action="/logout", method="post")
button.form-control(type="submit") Se deconnecter
button.form-control(type="submit") Logout
extends layout.pug
block content
h1 Welcome to API server
p Hello, world! This is server talking to you live on port #{port}!
p Vous devez vous connecter pour acceder aux BDD ("interface admin").
h1 Sigma backend API
p Veuillez vous connecter.
p Please log in.
form(action="/loginAttempt", method="post")
div.form-group
label(for="username") Frankiz ID
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment