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;
}
}
} |
Partager