Aide pour comprendre un code d'authentification
Bonjour à tous :),
j'essaie de comprendre la logique de .NET en faisant une application Web et du coup j'essaie de comprendre un exemple de code que l'on m'a conseillé qui est une page de Login (pour commencer lol).
Cependant, je ne comprend pas grand chose (pourtant j'ai quand même quelque connaissance dans d'autres langage mais là je suis dépassé lol).
Par exemple, je ne comprend pas comment la personne qui a codé le code suivant stock les informations. J'ai cherché dans le projet entier mais il n'y a pas de notion de "session" ou de "cookies" donc je ne sais pas trop comment il stock le login d'un utilisateur après vérification par exemple. Voici le code aspx et ensuite le code C# en behind :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
<%@ Page Title="Log In" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeBehind="Login.aspx.cs" Inherits="Methodes.Account.Login" %>
<%@ Import Namespace="SquishIt.Framework" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeaderContent">
<%= Bundle.JavaScript()
.Add("Login.aspx.js")
.ForceRelease()
.Render(RootRelativePath + "Resources/login_#.js")%>
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="BodyContent">
<asp:Login ID="LoginUser" runat="server" EnableViewState="true" RenderOuterTable="false" RememberMeSet="false" DisplayRememberMe="false" DestinationPageUrl="~/Default.aspx" >
<LayoutTemplate>
<div class="accountInfo">
<fieldset class="login">
<asp:Panel ID="pnlUtilisateur" runat="server" BackColor="#e5eeff">
<table style="font-size:small; font-family:Tahoma; margin:15px">
<tr >
<td>
<asp:Label ID="lblEnvironnement" runat="server" AssociatedControlID="ddlEnvironnement"> Environnement :</asp:Label>
</td>
<td>
<asp:DropDownList ID="ddlEnvironnement" runat="server" Width="210px"/>
</td>
</tr>
<tr >
<td>
<asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="UserName">Username:</asp:Label>
</td>
<td>
<asp:TextBox ID="UserName" runat="server" CssClass="uppercase" Width="190px"></asp:TextBox>
<asp:RequiredFieldValidator ID="UserNameRequired" runat="server" ControlToValidate="UserName"
CssClass="failureNotification" ErrorMessage="User Name is required." ToolTip="User Name is required."
ValidationGroup="LoginUserValidationGroup">*</asp:RequiredFieldValidator>
<asp:CustomValidator ID="cvUtilisateur" runat="server" CssClass="failureNotification" ValidationGroup="LoginUserValidationGroup" ControlToValidate="UserName">!</asp:CustomValidator>
</td>
</tr>
<tr>
<td>
<asp:Label ID="PasswordLabel" runat="server" AssociatedControlID="Password">Password:</asp:Label>
</td>
<td>
<asp:TextBox ID="Password" runat="server" Width="190px" CommandName="AuthenticateUtilisateur" CssClass="uppercase" TextMode="Password"></asp:TextBox>
<asp:RequiredFieldValidator ID="PasswordRequired" runat="server" ControlToValidate="Password"
CssClass="failureNotification" ErrorMessage="Password is required." ToolTip="Password is required."
ValidationGroup="LoginUserValidationGroup">**</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
<%--<asp:RequiredFieldValidator ID="PasswordRequired" runat="server" ControlToValidate="Password"
CssClass="failureNotification" ErrorMessage="Password is required." ToolTip="Password is required."
ValidationGroup="LoginUserValidationGroup">*</asp:RequiredFieldValidator>--%>
</td>
<td align="right">
<asp:Button ID="btnUtilisateur" runat="server" CommandName="AuthenticateUtilisateur" Text="Authenticate" ValidationGroup="LoginUserValidationGroup" BackColor="#30559a" ForeColor="White"/>
</td>
</tr>
<tr>
<td colspan="3" align="left">
<span class="failureNotification">
<asp:Literal ID="FailureText" runat="server"></asp:Literal>
</span>
<asp:ValidationSummary ID="LoginUserValidationSummary" runat="server" CssClass="failureNotification"
ValidationGroup="LoginUserValidationGroup"/>
</td>
</tr>
</table>
</asp:Panel>
<asp:Panel ID="pnlUsine" runat="server" Visible="false" BackColor="#e5eeff" >
<table style="font-size:small; font-family:Tahoma; margin:5px">
<tr>
<td colspan="2">
<asp:Label ID="lblChoisissezUsine" runat="server" Font-Bold="true">Choisissez une usine: </asp:Label>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblUsine" runat="server" AssociatedControlID="ddlUsine">Usine: </asp:Label>
</td>
<td>
<asp:DropDownList ID="ddlUsine" Width="220px" runat="server" />
</td>
<td align="right">
<asp:Button ID="LoginButton" runat="server" CommandName="Login" Text="Ok" ValidationGroup="UsineValidationGroup" BackColor="#30559a" ForeColor="White"/>
</td>
</tr>
</table>
</asp:Panel>
</fieldset>
</div>
</LayoutTemplate>
</asp:Login>
<asp:Label ID="lblError" runat="server" ForeColor="Red" EnableViewState="false" />
</asp:Content> |
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Presentation.Presenters;
using System.Web.Security;
using Presentation.Views;
using Context;
using Library.Helpers;
using Model.Enums;
using System.Data;
using System.Web.Services;
using System.Web.Script.Services;
namespace Methodes.Account
{
public partial class Login : App.BaseTypes.BasePage, ILoginView
{
private Panel pnlUtilisateur
{
get
{
return (Panel)LoginUser.FindControl("pnlUtilisateur");
}
}
private Panel pnlUsine
{
get
{
return (Panel)LoginUser.FindControl("pnlUsine");
}
}
private DropDownList ddlUsine
{
get
{
return (DropDownList)LoginUser.FindControl("ddlUsine");
}
}
private DropDownList ddlEnvironnement
{
get
{
return (DropDownList)LoginUser.FindControl("ddlEnvironnement");
}
}
public bool IsChangePlantOnly
{
get
{
return (Request.QueryString["changeplantonly"] == "true" && AppContext.Current.IsAuthenticated);
}
}
UtilisateurPresenter presenter;
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
Button btnUtilisateur = (Button)LoginUser.FindControl("btnUtilisateur");
btnUtilisateur.Click += new EventHandler(btnUtilisateur_Click);
LoginUser.Authenticate += new AuthenticateEventHandler(LoginUser_Authenticate);
presenter = AppContext.GetUtilisateurPresenter(this);
}
protected void Page_Load(object sender, EventArgs e)
{
try
{
if (!Page.IsPostBack)
{
if (IsChangePlantOnly)
{
DataTable plantsByUserTable = presenter.GetPlantsByUser();
EnableChangeUsine(plantsByUserTable);
ControlsHelper.Select(ddlUsine, Current.CodPlant);
}
else
BindEnvironnementList();
}
BindLabels();
}
catch(Exception ex)
{
AppContext.ExceptionHelper.HandleUIException(ex, lblError);
}
}
void BindLabels()
{
AppContext.Current.Environnement = GetEnvironnementByViewMode();
Label lbl = (Label)pnlUtilisateur.FindControl("lblEnvironnement");
lbl.Text = GetLabel("METHODE", "Environnement") + ": ";
lbl = (Label)pnlUtilisateur.FindControl("UserNameLabel");
lbl.Text = GetLabel("METHODE", "Utilisateur") + ": ";
lbl = (Label)pnlUtilisateur.FindControl("PasswordLabel");
lbl.Text = GetLabel("METHODE", "Mot de passe") + ": ";
Button btnUtilisateur = (Button)LoginUser.FindControl("btnUtilisateur");
btnUtilisateur.Text = GetLabel("METHODE", "Authenticate");
lbl = (Label)pnlUsine.FindControl("lblChoisissezUsine");
lbl.Text = GetLabel("METHODE", "Choisissez une usine") + ": ";
lbl = (Label)pnlUsine.FindControl("lblUsine");
lbl.Text = GetLabel("METHODE", "Usine") + ": ";
RequiredFieldValidator rqrvld = (RequiredFieldValidator)pnlUtilisateur.FindControl("UserNameRequired");
rqrvld.ErrorMessage = "* " + GetLabel("METHODE", "Utilisateur obligatoire");
rqrvld = (RequiredFieldValidator)pnlUtilisateur.FindControl("PasswordRequired");
rqrvld.ErrorMessage = "** " + GetLabel("METHODE", "Mot de passe obligatoire");
}
void btnUtilisateur_Click(object sender, EventArgs e)
{
try
{
bool authenticated = presenter.Authenticate(Model.Enums.ModuleName.METHODE);
if (authenticated)
{
AppContext.LibelleServiceFacade.Init(ModuleName.SiteSection);
DataTable plantsByUserTable = presenter.GetPlantsByUser();
if (plantsByUserTable.Rows.Count == 1)
{
string codPlant = plantsByUserTable.Rows[0]["cod_plant"].ToString();
string plantName = plantsByUserTable.Rows[0]["lbl_plant"].ToString();
presenter.SetPlant(codPlant, plantName);
FormsAuthentication.RedirectFromLoginPage(UserName, false);
}
else
EnableChangeUsine(plantsByUserTable);
}
}
catch (Exception ex)
{
AppContext.ExceptionHelper.HandleUIException(ex, lblError);
}
}
void EnableChangeUsine(DataTable table)
{
pnlUtilisateur.Visible = false;
pnlUsine.Visible = true;
BindUsineListByUser(table);
}
void LoginUser_Authenticate(object sender, AuthenticateEventArgs e)
{
try
{
presenter.SetPlant();
e.Authenticated = true;
}
catch (Exception ex)
{
AppContext.ExceptionHelper.HandleUIException(ex, lblError);
}
}
void BindUsineListByUser(DataTable table)
{
DropDownList ddlUsine = (DropDownList)LoginUser.FindControl("ddlUsine");
ddlUsine.DataSource = table;
ddlUsine.DataValueField = "cod_plant";
ddlUsine.DataTextField = "lbl_plant";
ddlUsine.DataBind();
}
void BindEnvironnementList()
{
ddlEnvironnement.DataSource = AppContext.AppSettings.GetAvailableEnvironnements();
ddlEnvironnement.DataValueField = "Key";
ddlEnvironnement.DataTextField = "Value";
ddlEnvironnement.DataBind();
}
public string UserName
{
get { return LoginUser.UserName.ToUpper(); }
}
public string Password
{
get { return LoginUser.Password; }
}
public string FailureText
{
get
{
return LoginUser.FailureText;
}
set
{
CustomValidator cvUtilisateur = (CustomValidator)LoginUser.FindControl("cvUtilisateur");
cvUtilisateur.ErrorMessage = value;
cvUtilisateur.IsValid = false;
LoginUser.FailureText = value;
}
}
private string GetEnvironnementByViewMode()
{
if (IsChangePlantOnly)
return Current.Environnement;
else
return Environnement;
}
public string Environnement
{
get
{
return ddlEnvironnement.SelectedValue;
}
}
public string Equipe
{
get { return null; }
}
public string CodPlant
{
get
{
return ddlUsine.SelectedValue;
}
}
public string PlantName
{
get
{
return ddlUsine.SelectedItem.Text;
}
}
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static bool IsAuthenticated()
{
return AppContext.Current.IsAuthenticated;
}
}
} |
Merci d'avance :)