pkmn-classic-framework/web/battlevideo/Default.aspx.cs

111 lines
3.9 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using MySql.Data.MySqlClient;
using System.Configuration;
using PkmnFoundations.Data;
namespace PkmnFoundations.GTS
{
public partial class BattleVideo : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
ulong bvCount4, bvCount5;
if (Cache["BattleVideoCount4"] == null ||
Cache["BattleVideoCount5"] == null)
{
bvCount4 = Database.Instance.BattleVideoCount4();
bvCount5 = Database.Instance.BattleVideoCount5();
Cache.Insert("BattleVideoCount4", bvCount4, null,
DateTime.Now.AddMinutes(1),
System.Web.Caching.Cache.NoSlidingExpiration);
Cache.Insert("BattleVideoCount5", bvCount5, null,
DateTime.Now.AddMinutes(1),
System.Web.Caching.Cache.NoSlidingExpiration);
}
else
{
bvCount4 = Convert.ToUInt64(Cache["BattleVideoCount4"]);
bvCount5 = Convert.ToUInt64(Cache["BattleVideoCount5"]);
}
litMessage4.Text = "";
litMessage5.Text = "";
litTotal4.Text = HttpUtility.HtmlEncode(bvCount4.ToString());
litTotal5.Text = HttpUtility.HtmlEncode(bvCount5.ToString());
}
protected void btnSend4_Click(object sender, EventArgs e)
{
ulong id;
UInt64.TryParse(txtBattleVideo4.Text.Replace('-', ' ').Replace(" ", ""), out id);
if (id == 0)
{
litMessage4.Text = "The battle video ID could not be read. Please enter a battle video ID in the format, xx-xxxxx-xxxxx, and try again.";
return;
}
using (MySqlConnection db = CreateConnection())
{
db.Open();
QueueVideoId4(db, id);
db.Close();
}
}
private void QueueVideoId4(MySqlConnection db, ulong id)
{
long count = (long)db.ExecuteScalar("SELECT Count(*) FROM TerminalBattleVideos4 " +
"WHERE SerialNumber = @serial_number",
new MySqlParameter("@serial_number", id));
if (count > 0)
{
litMessage4.Text = "This battle video has been saved.";
return;
}
litMessage4.Text = "This battle video is lost.";
}
protected void btnSend5_Click(object sender, EventArgs e)
{
ulong id;
UInt64.TryParse(txtBattleVideo5.Text.Replace('-', ' ').Replace(" ", ""), out id);
if (id == 0)
{
litMessage5.Text = "The battle video ID could not be read. Please enter a battle video ID in the format, xx-xxxxx-xxxxx, and try again.";
return;
}
using (MySqlConnection db = CreateConnection())
{
db.Open();
QueueVideoId5(db, id);
db.Close();
}
}
private void QueueVideoId5(MySqlConnection db, ulong id)
{
long count = (long)db.ExecuteScalar("SELECT Count(*) FROM TerminalBattleVideos5 " +
"WHERE SerialNumber = @serial_number",
new MySqlParameter("@serial_number", id));
if (count > 0)
{
litMessage5.Text = "This battle video has been saved.";
return;
}
litMessage5.Text = "This battle video is lost.";
}
public static MySqlConnection CreateConnection()
{
return new MySqlConnection(ConfigurationManager.ConnectionStrings["pkmnFoundationsConnectionString"].ConnectionString);
}
}
}