Exemple #1
0
        public async override Task PreRender()
        {
            if (!Context.IsPostBack)
            {
                SpiderRep.GetPornHubVideos(Videos, string.Empty);
            }
            if (SwitchWebsite == 0)
            {
                ImageName = "../../Content/img/admin/redtube.png";
            }
            else if (SwitchWebsite == 1)
            {
                ImageName = "../../Content/img/admin/xhamster.png";
            }
            else if (SwitchWebsite == 2)
            {
                ImageName = "../../Content/img/admin/drtuber.png";
            }
            else if (SwitchWebsite == 3)
            {
                ImageName = "../../Content/img/admin/pornhub.png";
            }

            await base.PreRender();
        }
Exemple #2
0
 public void SearchVideos()
 {
     if (!string.IsNullOrWhiteSpace("Search"))
     {
         if (SelectedPage == "Redtube")
         {
             SwitchWebsite = 0;
             Videos        = new List <VideoListAdminDTO>();
             SpiderRep.GetRedTubeVideos(Videos, Search);
         }
         else if (SelectedPage == "Pornhub")
         {
             SwitchWebsite = 3;
             Videos        = new List <VideoListAdminDTO>();
             SpiderRep.GetPornHubVideos(Videos, Search);
         }
     }
 }
Exemple #3
0
 public void ChangeCategoryList()
 {
     Videos = new List <VideoListAdminDTO>();
     if (SwitchWebsite == 1)
     {
         SpiderRep.GetXhamsterVideos(Videos, SelectedWebCategory);
     }
     else if (SwitchWebsite == 0)
     {
         SpiderRep.GetRedTubeVideos(Videos, SelectedWebCategory);
     }
     else if (SwitchWebsite == 2)
     {
         SpiderRep.GetDrTuberVideos(Videos, SelectedWebCategory);
     }
     else if (SwitchWebsite == 3)
     {
         SpiderRep.GetPornHubVideos(Videos, SelectedWebCategory);
     }
 }
Exemple #4
0
 public void SwitchToPornHub()
 {
     SwitchWebsite = 3;
     Videos        = new List <VideoListAdminDTO>();
     SpiderRep.GetPornHubVideos(Videos, SelectedWebCategory);
 }