在向上/向下投票系统中使用cookie

本文关键字:cookie 系统 | 更新日期: 2023-09-27 17:59:02

我想为从数据库中检索到的几篇文章建立上下投票系统,但我想为每篇文章添加cookie以限制投票次数,这样cookie将在一天内过期,但我不知道在哪里添加合适的代码。

更多详细信息:

<script>
    function vote(id, value) { // function vote with 2 arguments: article ID and value (+1 or -1) depending if you clicked on the arrow up or down
        var dataFields = { 'id': id, 'value': value }; // We pass the 2 arguments
        $.ajax({ // Ajax
            type: "POST",
            dataType: "text",//This for indicate that you'r expecting a text response from server
            url: "WebService.asmx/updateVotes",
            data: dataFields,
            timeout: 3000,
            success: function (dataBack) {
                if(
                    $('#number' + id).html(dataBack);// div "number" with the new number
                    $('#arrow_up' + id).html('<div class="arrow_up_voted"></div>'); // We replace the clickable "arrow up" by the not clickable one
                    $('#arrow_down' + id).html('<div class="arrow_down_voted"></div>'); // We replace the clickable "arrow down" by the not clickable one
                    $('#message' + id).html('<div id="alertFadeOut' + id + '" style="color: green">Thank you for voting</div>'); // Diplay message with a fadeout
                    $('#alertFadeOut' + id).fadeOut(1100, function () {
                        $('#alertFadeOut' + id).text('');
                    });
                },

            error: function () {
                $('#number' + id).text('Problem!');
            }
        });
    }

</script>

上面的代码是一个调用ajax方法的脚本,每次用户单击向上箭头时,每个人的投票数就会增加,反之则会减少。

    public string updateVotes(string id,int value)
{
    System.Threading.Thread.Sleep(500); // delay for 2.5 seconds Network latency
   post p = db.posts.Find(int.Parse(id));
    // assign new values
   p.totalVotes += value;
    db.Entry(p).State = System.Data.EntityState.Modified;
    db.SaveChanges();
    string dataBack =p.totalVotes.ToString();
    return dataBack;
}

这就是网络方法。

现在我试着大声思考,并编写了以下函数来检查cookie是否为空。

 public bool enableVoting()
{
    HttpCookie cookie = Request.Cookies["enableVote"];
    if (Request.Cookies["enableVote"] != null)
    {
       return true;
    }
    else
    {
      return false;
    }

}

我知道这是错误的,但至少我试过了。

此外,每当用户投票支持文章时,在哪里添加一个for each循环来添加cookie。?

   foreach(post p in db.posts){
        HttpCookie cookie = new HttpCookie("enableVote"+p.ID);
        cookie.Value = "article:"+p.ID;
        cookie.Expires = DateTime.Now.AddDays(1);
        Response.Cookies.Add(cookie);
    }

在向上/向下投票系统中使用cookie

一个建议。不要为此使用cookie。它们很容易被操纵。清除浏览器历史记录,您可以再次投票。。再一次。。再一次。

相反,在数据库中创建一个投票表,并添加一个记录,其中包含投票人的ip、他们投票支持的帖子的id以及时间戳。

这样你就可以很容易地计算选票,当有人投票时,你可以快速检查该IP上次投票给该文章(或任何文章)是多久前的事了。

此外,通过数据库中的投票表,您可以轻松捕捉对所有内容进行投票的机器人,并限制单个ip对任何文章的投票次数(每几分钟可能不超过1或2次投票)。

如果你担心同一IP背后的多个人无法投票,你可以包括浏览器名称,并只计算唯一的IP和浏览器版本作为投票。这是相当独特的。它也可以被操纵,但对普通用户来说有点难。

更新:我使用这段代码的目的是在我的一个MVC项目中获得一个有点独特的密钥。用户可以切换浏览器并再次投票,但这需要付出一些努力,而且比清除浏览器历史记录更痛苦。

我将IP、浏览器和国家组合成一个字符串,并将其用作投票键。

public class UserInfo
{
    public String ip { get; private set; }
    public String browser { get; private set; }
    public String country { get; private set; }
    public UserInfo(HttpRequestBase Request)
    {
        ip = Request.UserHostAddress;
        browser = Request.Browser.Platform + " " + Request.Browser.Type + "/" + Request.Browser.Id + " " + Request.Browser.Version;
        country = "";
        if (Request.UserLanguages.Length > 0)
            country += " - " + Request.UserLanguages.ElementAt(0);
    }
}

我在这里使用这个系统:http://filepublicator.com/以检查用户是否有任何以前上传的文件(尝试上传一些东西并关闭浏览器,然后再次访问,它将在列表中)。