vote up 0 vote down star

hi i am trying to create a custom attribute for my MVC application so that i can call [CheckLogin] this is to check my cookie as i am not using forms authentification.

i have created a class CheckLogin and this is in my App_Code folder and the code is as follows:

  using System.Web.Mvc;
  using System.Attributes;
  using System.Diagnostics.CodeAnalysis;
  using System.Globalization;
  using System.Web;
  using System;

  namespace corian_MVC.Controllers
  {
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, Inherited = true, AllowMultiple = true)]
public class CheckLoginAttribute : FilterAttribute, IAuthorizationFilter
{

    public CheckLoginAttribute() { 



    }

    public void OnAuthorization(AuthorizationContext filterContext)
    {
        // TODO: perform your cookie checks
        if (!userIsAuthenticated)
        {
            filterContext.Result = new RedirectResult(string.Format(
                "/Admin/Login",
                filterContext.HttpContext.Request.Url.AbsoluteUri));
        }
    }
}

}

what it does is not important here, the problem is i cant get my code to recognise this attribute if it is one in the first place, also how do i redirect to action if the login is failed ????

many thanks

my admin class:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;


 namespace corian_MVC.Controllers
 {
[HandleError]
public class AdminController : Controller
{
    [AcceptVerbs(HttpVerbs.Get)]
    public ActionResult Index()
    {
        //check login is not banned

        if ((int)Session["LoginCount"] >= 3) RedirectToAction("TooMany");

        return View();
    }

    public ActionResult Fraud()
    {
        Session["LoginCount"] = 3;
        return View();
    }

    public ActionResult TooMany()
    {
        return View();
    }

    [CheckLogin]
    public ActionResult Welcome()
    {
        return View();
    }

    private void Createcookie()
    {

    }

}

}

flag

2 Answers

vote up 1 vote down

This scenario is best handled by implementing an IAuthorizationFilter.

[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, Inherited=true, AllowMultiple=true)]
public class CheckLoginAttribute : FilterAttribute, IAuthorizationFilter
{
    public void OnAuthorization(AuthorizationContext filterContext)
    {
        // TODO: perform your cookie checks
        if (!userIsAuthenticated)
        {
            filterContext.Result = new RedirectResult(string.Format(
                "/loginUrl?ReturnUrl={0}",  
                filterContext.HttpContext.Request.Url.AbsoluteUri));
        }
    }
}

Then you can apply this attribute either at the controller level or at some particular actions.

By the way do you have any particular reason for not using the built-in FormsAuthentication?

link|flag
yeah thats great but i can not get the attribute to even be picked up in my controllers, the usual im missing an assembly reference, however there in the same namespace etc. is there something extra i have to do in order to make it available ???? – minus4 Nov 7 at 14:50
I don't understand. You get compile errors or what? – Darin Dimitrov Nov 7 at 14:51
Arghh, I see. You use App_Code. Well don't use this folder. This is only used for ASP.NET web sites and not web applications which the standard model for ASP.NET MVC template. – Darin Dimitrov Nov 7 at 14:53
moved it from app_code to main root of site, I.E CheckLoginAttribute.cs sits next to default.aspx ?? still not picking it up – minus4 Nov 7 at 15:02
Did you actually marked any of your controller action methods with this attribute? – Darin Dimitrov Nov 7 at 15:06
show 8 more comments
vote up -1 vote down

Include .cs file with your attribute to the solution. Just placing it "near default.aspx" is not enough.

link|flag
please read below, it is no longer there it is in controllers and i have triedadding a using tag but it wont – minus4 Nov 7 at 16:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.