Esempio n. 1
0
        public override void ProcessContent(Dictionary <string, string> page_info)
        {   //Main function to begin process of a page
            lock (Chrome)
            {
                lock (Wait)
                {
                    if (!LoggedIntoBrightcove)
                    {   //Need to make sure the ChromeDriver is logged into brightcove
                        //Since I already had a powershell script to do this I just load and run that script
                        string BrightCoveUserName = Options.BrightCoveCred["Username"];
                        var    password           = Options.BrightCoveCred["Password"];

                        Chrome.Url = "https://signin.brightcove.com/login?redirect=https%3A%2F%2Fstudio.brightcove.com%2Fproducts%2Fvideocloud%2Fmedia";
                        Wait.UntilElementIsVisible(By.CssSelector("input[name*=\"email\"]")).SendKeys(BrightCoveUserName);
                        Wait.UntilElementIsVisible(By.CssSelector("input[id*=\"password\"]")).SendKeys(password);
                        Wait.UntilElementIsVisible(By.CssSelector("button[id*=\"signin\"]")).Submit();

                        LoggedIntoBrightcove = true;
                    }
                }
            }

            if (page_info[page_info.Keys.ElementAt(0)] == null)
            {   //Just return if there is no page / page is empty
                return;
            }
            //Set the current document
            var PageDocument = new DataToParse(page_info.Keys.ElementAt(0), page_info[page_info.Keys.ElementAt(0)]);

            //Process each of the media elements
            ProcessLinks(PageDocument);
            ProcessIframes(PageDocument);
            ProcessVideoTags(PageDocument);
            ProcessBrightcoveVideoHTML(PageDocument);
        }
Esempio n. 2
0
        private void ProcesImages(DataToParse PageDocument)
        {
            var image_list = PageDocument.Doc
                             .DocumentNode
                             .SelectNodes("//img");

            if (image_list == null)
            {
                return;
            }
            Parallel.ForEach(image_list, image =>
            {   //This is pretty fast on its own, but why not run it parallel
                if (image.Attributes["src"] != null)
                {
                    if (new Regex("http|^www\\.|.*?\\.com$|.*?\\.org$", RegexOptions.IgnoreCase).IsMatch(image.Attributes["src"].Value))
                    {
                    }
                    else
                    {
                        if (!TestPath(image.Attributes["src"].Value))
                        {
                            lock (Data)
                            {
                                Data.Add(new PageData(PageDocument.Location,
                                                      image.Attributes["src"].Value,
                                                      "",
                                                      "Image does not exist"));
                            }
                        }
                    }
                }
            });
        }
Esempio n. 3
0
        private void ProcessOnclicks(DataToParse PageDocument)
        {   //// Some courses use a ton of inaccessible OnClick elements in place of everything
            var onclick_elements = PageDocument.Doc
                                   .DocumentNode
                                   .SelectNodes("//*[@onclick]");

            if (onclick_elements == null)
            {
                return;
            }
            foreach (var el in onclick_elements)
            {
                if (el.Name == "a")
                {   //// Check links elsewhere, dont need to double check
                    continue;
                }
                lock (Data)
                {
                    Data.Add(new PageA11yData(PageDocument.Location,
                                              "Onclick Element",
                                              "",
                                              el.OuterHtml,
                                              "Onclick attributes are not keyboard accessible",
                                              3,
                                              el.XPath));
                }
            }
        }
Esempio n. 4
0
        private void ProcessMathJax(DataToParse PageDocument)
        {
            var mathjax_span_list = PageDocument.Doc
                                    .DocumentNode
                                    .SelectNodes("//span[@class=\"MathJax_SVG\"]");

            if (mathjax_span_list == null)
            {
                return;
            }
            foreach (var span in mathjax_span_list)
            {   //// MathJax needs an aria-label to be accessible
                var aria_label = span.Attributes["aria-label"];
                if (aria_label == null)
                {
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "MathJax", "", "MathJax SVG spans need an aria-label", "", 1));
                    }
                }
                else if (aria_label.Value == "Equation")
                {   //// Seems we commonly just have the single word "Equation" for every MathJax element as the aria-label
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location,
                                                  "MathJax",
                                                  "",
                                                  $"Title: \"{span.Attributes["title"]?.Value}\"",
                                                  "MathJax SVG needs a descriptive aria-label (usually the text in the title should be moved to the Aria-Label attribute)",
                                                  3,
                                                  span.XPath));
                    }
                }
            }
        }
Esempio n. 5
0
        public override void ProcessContent(Dictionary <string, string> page_info)
        {
            System.Diagnostics.Stopwatch TimeRunning = new System.Diagnostics.Stopwatch();
            TimeRunning.Start();
            if (page_info[page_info.Keys.ElementAt(0)] == null)
            {
                return;
            }
            var PageDocument = new DataToParse(page_info.Keys.ElementAt(0), page_info[page_info.Keys.ElementAt(0)]);

            ProcessLinks(PageDocument);
            ProcesImages(PageDocument);
            TimeRunning.Stop();
            lock (AddTime)
            {
                Time += TimeRunning.Elapsed;
            }
        }
Esempio n. 6
0
        private void ProcessFlash(DataToParse PageDocument)
        {   //If any flash is found it is automatically marked as inaccessible
            var flash_list = PageDocument.Doc
                             .DocumentNode
                             .SelectNodes("//object[contains(@id, \"flash\")]");

            if (flash_list == null)
            {
                return;
            }
            else if (flash_list.Count() > 0)
            {
                //Flash shouldn't be used anywhere
                lock (Data)
                {
                    Data.Add(new PageA11yData(PageDocument.Location, "Flash Element", "", $"{flash_list.Count()} embedded flash element(s) on this page", "Flash is inaccessible", 5));
                }
            }
        }
Esempio n. 7
0
        private void ProcessVideoTags(DataToParse PageDocument)
        {   //process any video tags
            var videotag_list = PageDocument.Doc
                                .DocumentNode
                                .SelectNodes("//video");

            if (videotag_list == null)
            {
                return;
            }
            foreach (var videotag in videotag_list)
            {
                string src, videoId;
                if (videotag.Attributes["src"] == null)
                {
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Inline Media Video", videotag.OuterHtml, "Something may be wrong with this video...", "Check video", 3, videotag.XPath));
                    }
                    src     = "";
                    videoId = "Unable to find ... ";
                }
                else
                {
                    src     = videotag.Attributes["src"].Value;
                    videoId = src.Split('=')
                              .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                              .ElementAt(1)
                              .Split('&')
                              .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                              .FirstOrDefault();
                }

                if (!VideoParser.CheckTranscript(videotag))
                {
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Inline Media Video", videoId, "Inline Media Video\n", "No transcript found", 5, videotag.XPath));
                    }
                }
            }
        }
Esempio n. 8
0
        private void ProcessSemantics(DataToParse PageDocument)
        {
            //Process page semantics (i and b tags).
            var i_or_b_tag_list = PageDocument.Doc
                                  .DocumentNode
                                  .SelectNodes("//i | //b");

            if (i_or_b_tag_list == null)
            {
                return;
            }
            else if (i_or_b_tag_list.Count() > 0)
            {
                //Flag if any i or b tags are found
                lock (Data)
                {
                    Data.Add(new PageA11yData(PageDocument.Location, "<i> or <b> tags", "", "Page contains <i> or <b> tags", "<i>/<b> tags should be <em>/<strong> tags", 1));
                }
            }
        }
Esempio n. 9
0
        private void ProcessAudioElements(DataToParse PageDocument)
        {   //// Audio Recordings should have transcripts for deaf people
            var audio_elements = PageDocument.Doc
                                 .DocumentNode
                                 .SelectNodes("//a[contains(@class, 'instructure_audio_link')]");

            if (audio_elements == null)
            {
                return;
            }
            foreach (var el in audio_elements)
            {
                if (!VideoParser.CheckTranscript(el))
                {
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Inline Audio Recording", "", el.InnerText, "No transcript found", 5, el.XPath));
                    }
                }
            }
        }
Esempio n. 10
0
        private void ProcessHeaders(DataToParse PageDocument)
        {   //Process all the headers on the page
            var header_list = PageDocument.Doc
                              .DocumentNode
                              .SelectNodes("//h1 | //h2 | //h3 | //h4 | //h5 | //h6");

            if (header_list == null)
            {
                return;
            }
            foreach (var header in header_list)
            {
                if (header.Attributes["class"]?.Value?.Contains("screenreader-only") == true)
                {
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Header", "", header.OuterHtml, "Check if header is meant to be invisible", 1, header.XPath));
                    }
                }
            }
        }
Esempio n. 11
0
        private void ProcessVideoTags(DataToParse PageDocument)
        {
            var video_tag_list = PageDocument.Doc
                                 .DocumentNode
                                 .SelectNodes("//video");

            if (video_tag_list == null)
            {
                return;
            }

            foreach (var video in video_tag_list)
            {
                if (video.Attributes["src"] == null)
                {
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Inline Media Video",
                                                   "",
                                                   $"Something may be wrong with this video...\n{video.OuterHtml}",
                                                   "",
                                                   new TimeSpan(0),
                                                   VideoParser.CheckTranscript(video)));
                    }
                    continue;
                }
                string video_id = video.Attributes["src"].Value.CleanSplit("=")[1].CleanSplit("&")[0];
                lock (Data)
                {
                    Data.Add(new PageMediaData(PageDocument.Location,
                                               "Inline Media Video",
                                               video_id,
                                               "Inline Media:\nUnable to find title or video length for this type of video",
                                               video.Attributes["src"].Value,
                                               new TimeSpan(0),
                                               VideoParser.CheckTranscript(video)));
                }
            }
        }
Esempio n. 12
0
        private void ProcessBrightcoveVideoHTML(DataToParse PageDocument)
        {   //A lot of our HTML templates use a div + javascript to insert the brightcove video.
            var brightcove_list = PageDocument.Doc
                                  .DocumentNode
                                  ?.SelectNodes(@"//div[@id]")
                                  ?.Where(e => new Regex("\\d{13}").IsMatch(e.Id));

            if (brightcove_list == null)
            {
                return;
            }
            foreach (var video in brightcove_list)
            {
                if (!VideoParser.CheckTranscript(video))
                {
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Transcript", video.Attributes["id"].Value, $"No transcript found for BrightCove video with id:\n{video.Attributes["id"].Value}", "No transcript found", 5, video.XPath));
                    }
                }
            }
        }
Esempio n. 13
0
        private void ProcessBrightcoveVideoHTML(DataToParse PageDocument)
        {
            var brightcove_list = PageDocument.Doc
                                  .DocumentNode
                                  ?.SelectNodes(@"//div[@id]")
                                  ?.Where(e => new Regex("\\d{13}").IsMatch(e.Id));

            if (brightcove_list == null)
            {
                return;
            }
            string BrightCoveVideoName = "";

            foreach (var video in brightcove_list)
            {
                string   video_id = new Regex("\\d{13}").Match(video.Id).Value;
                TimeSpan video_length;
                bool     cc;
                lock (Chrome)
                {
                    lock (Wait)
                    {
                        video_length = VideoParser.GetBrightcoveVideoLength(video_id, Chrome, Wait, out cc, out BrightCoveVideoName);
                    }
                }
                lock (Data)
                {
                    Data.Add(new PageMediaData(PageDocument.Location,
                                               "Brightcove Video",
                                               video_id,
                                               BrightCoveVideoName,
                                               $"https://studio.brightcove.com/products/videocloud/media/videos/search/{video_id}",
                                               video_length,
                                               VideoParser.CheckTranscript(video),
                                               cc));
                }
            }
        }
Esempio n. 14
0
        private void ProcessTables(DataToParse PageDocument)
        {
            //Get all tables
            var table_list = PageDocument.Doc
                             .DocumentNode
                             .SelectNodes("//table");

            //Make sure it isn't null
            if (table_list == null)
            {
                return;
            }
            //Count the tables so we can know which table on the page has the issues
            var table_num = 1;

            foreach (var table in table_list)
            {
                //Get list of headers, data cells, how many rows, and any stretched cells
                var table_headers    = table.SelectNodes(".//th");
                var table_data_cells = table.SelectNodes(".//td");
                var table_rows       = table.SelectNodes(".//tr");
                var stretched_cells  = table.SelectNodes(".//*[@colspan]");
                //Init the issue string
                string issues = "";
                //See if there are any stretchedcells
                if (stretched_cells != null)
                {
                    issues += "\nStretched table cell(s) should be a <caption> title for the table";
                }
                //See how many rows there are, if there is 3 or more and there are no headers then flag it as needing headers

                var num_rows = table_rows?.Count() == null ? 0 : table_rows.Count();
                if (num_rows >= 3)
                {
                    if (table_headers == null)
                    {
                        issues += "\nTable has no headers (headers should have scope tags)";
                    }
                }
                //See how many headers have scopes, should be the same number as the number of headers
                var scope_headers = table_headers?.Count(c => c.Attributes["scope"] != null);
                if ((table_headers != null) &&
                    (table_headers.Count() > 0) &&
                    (scope_headers == null || scope_headers != table_headers.Count()))
                {
                    issues += "\nTable headers should have a scope attribute";
                }
                //See if any data cells have scopes when they should not
                var scope_cells = table_data_cells?.Count(c => c.Attributes["scope"] != null);
                if (scope_cells != null && scope_cells > 0)
                {
                    issues += "\nNon-header table cells should not have scope attributes";
                }
                if (!table.HasChildNodes)
                {
                    issues += "\nEmpty table should be removed";
                }

                var numRowsWithMultipleHeaders = table_rows?.Count(c => c.ChildNodes.Where(child => child.Name == "th").Count() > 1);
                if (numRowsWithMultipleHeaders != null && numRowsWithMultipleHeaders > 1)
                {
                    issues += "\nTables should not have multiple header rows, they should be split into seperate tables or have the headers combined";
                }
                //If any issues were found then add it to the list
                if (issues != null && issues != "")
                {
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Table", "", $"Table number {table_num}:{issues}", "Revise table", 1));
                    }
                }
                table_num++;
            }
        }
Esempio n. 15
0
        private void ProcessColor(DataToParse PageDocument)
        {   //Process any elements that have a color style
            var colored_element_list = PageDocument.Doc
                                       .DocumentNode
                                       .SelectNodes("//*[contains(@style, \"color\")]");

            if (colored_element_list == null)
            {
                return;
            }
            foreach (var color in colored_element_list)
            {
                System.Web.UI.CssStyleCollection style = new System.Web.UI.WebControls.Panel().Style; //Get styles of element
                style.Value = color.Attributes["style"].Value;
                var background_color = style["background-color"];                                     //Grab background color
                if (background_color == null)                                                         //If there is no background color look at parent elements first
                {
                    var helper = color;
                    while (helper.ParentNode != null)
                    {
                        helper = helper.ParentNode;
                        System.Web.UI.CssStyleCollection check = new System.Web.UI.WebControls.Panel().Style;
                        check.Value = helper.Attributes["style"]?.Value;
                        if (check.Value != null)
                        {
                            background_color = check["background-color"];
                            if (background_color != null)
                            {   //once we find a background-color then we can stop looking
                                break;
                            }
                        }
                    }
                    //if its still empty set to default
                    if (background_color == null)
                    {
                        //Default background color is white
                        background_color = "#FFFFFF";
                    }
                }

                var foreground_color = style["color"];
                if (foreground_color == null)
                {
                    //Check parent elements for foreground color if the current did not have one
                    var helper = color;
                    while (helper.ParentNode != null)
                    {
                        helper = helper.ParentNode;
                        System.Web.UI.CssStyleCollection check = new System.Web.UI.WebControls.Panel().Style;
                        check.Value = helper.Attributes["style"]?.Value;
                        if (check.Value != null)
                        {
                            foreground_color = check["color"];
                            if (foreground_color != null)
                            {
                                break;
                            }
                        }
                    }
                    //If its still empty set to default color
                    if (foreground_color == null)
                    {
                        //Default text color is black
                        foreground_color = "#000000";
                    }
                }
                /////////// To reduce number of false positives / negatives the next bit looks at any elements between the current and the actual text to see if it changes
                //////////  Often run into elements that immediately have their color overwritten and is never used
                var check_children = color;
                while (check_children.FirstChild != null && check_children.FirstChild.Name != "#text")
                {   //Checks till we run into the text if there are any color changes.
                    //May not work very well if it is something like <p style="color: base;">asdasdsa<span style="color: NewColor;">asdasd</span>asdasd<span style="color: DiffColor;">asdasd</span></p>
                    check_children = check_children.FirstChild;
                    System.Web.UI.CssStyleCollection check = new System.Web.UI.WebControls.Panel().Style;
                    check.Value = check_children.Attributes["style"]?.Value;
                    if (check["color"] != null)
                    {
                        foreground_color = check["color"];
                    }
                    if (check["background-color"] != null)
                    {
                        background_color = check["background-color"];
                    }
                }

                if (!background_color.Contains("#"))
                {   //If it doesn't have a # then it is a known named color, needs to be converted to hex
                    //the & 0xFFFFFF cuts off the A of the ARGB
                    int rgb = System.Drawing.Color.FromName(background_color.FirstCharToUpper()).ToArgb() & 0xFFFFFF;
                    background_color = string.Format("{0:x6}", rgb);
                }
                if (!foreground_color.Contains('#'))
                {   //If it doesn't have a # then it is a known named color, needs to be converted to hex
                    int rgb = System.Drawing.Color.FromName(foreground_color.FirstCharToUpper()).ToArgb() & 0xFFFFFF;
                    foreground_color = string.Format("{0:x6}", rgb);
                }
                //The API doesn't like having the #
                foreground_color = foreground_color.Replace("#", "");
                background_color = background_color.Replace("#", "");
                var restClient = new RestClient($"https://webaim.org/resources/contrastchecker/?fcolor={foreground_color}&bcolor={background_color}&api");
                var request    = new RestRequest(Method.GET);
                //Will return single color object with parameters we want
                var response = restClient.Execute <ColorContrast>(request).Data;
                var text     = string.Empty;
                //See if we can get the inner text so we can identify the element if there was an issue found
                if (color.InnerText != null)
                {
                    text = "\"" + HttpUtility.HtmlDecode(color.InnerText) + "\"\n";
                }
                if (text == string.Empty || text == "\"\"")
                {   //if there was no text just assume it isn't an issue. Will be almost impossible to find it anyway.
                    continue;
                }
                if (response.AA != "pass")
                {   //Add it if it doesn't pass AA standards
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Color Contrast", "", $"{text}Color: {foreground_color}\nBackgroundColor: {background_color}\n{response.ToString()}", "Does not meet AA color contrast", 1, color.XPath));
                    }
                }
            }
        }
Esempio n. 16
0
        private void ProcessLinks(DataToParse PageDocument)
        {
            var link_list = PageDocument.Doc
                            .DocumentNode
                            .SelectNodes("//a");

            if (link_list == null)
            {
                return;
            }
            var BrightCoveVideoName = "";

            foreach (var link in link_list)
            {   //Make sure there is an href
                if (link.Attributes["href"] == null)
                {
                    continue;
                }
                if (link.GetClasses().Contains("video_link"))
                {   //See if it is an embded canvas video link
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Canvas Video Link",
                                                   "",
                                                   "Inline Media:\nUnable to find title, CC, or video length for this type of video",
                                                   link.Attributes["href"].Value,
                                                   new TimeSpan(0),
                                                   VideoParser.CheckTranscript(link),
                                                   false));
                    }
                }
                else if (link.GetClasses().Contains("instructure_audio_link"))
                {
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Canvas Audio Link",
                                                   "",
                                                   link.InnerText,
                                                   link.Attributes["href"].Value,
                                                   new TimeSpan(0),
                                                   VideoParser.CheckTranscript(link),
                                                   false));
                    }
                }
                else if (new Regex("youtu\\.?be", RegexOptions.IgnoreCase).IsMatch(link.Attributes["href"].Value))
                {   //See if it is a youtube video
                    var uri = new Uri((link.Attributes["href"].Value));

                    var query    = System.Web.HttpUtility.ParseQueryString(uri.Query);
                    var video_id = string.Empty;
                    if (query.AllKeys.Contains("v"))
                    {
                        video_id = query["v"];
                    }
                    else
                    {
                        video_id = uri.Segments.LastOrDefault();
                    }
                    //Get time from video
                    TimeSpan video_length;
                    bool     channel = false;
                    string   title   = "";
                    try
                    {
                        video_id = video_id.Split('?')
                                   .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                   .FirstOrDefault();
                        video_id = video_id.Split('/')
                                   .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                   .LastOrDefault();
                        video_id = video_id.Split('#')
                                   .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                   .FirstOrDefault();
                        if (uri.Segments.Contains("channel/"))
                        {
                            title        = VideoParser.GetYTChannelName(video_id);
                            video_length = new TimeSpan(0);
                            channel      = true;
                        }
                        else
                        {
                            video_length = VideoParser.GetYoutubeVideoLength(video_id);
                        }
                    }
                    catch
                    {
                        //Time is 0 if it failed
                        Console.WriteLine("Video not found");
                        video_length = new TimeSpan(0);
                    }
                    string video_found = string.Empty;
                    if (video_length == new TimeSpan(0) && !channel)
                    {   //make sure we apend video not found for the excel doc
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                        if (channel)
                        {
                            video_found = $"\nLinks to a channel named: {title}";
                        }
                    }

                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "YouTube Link",
                                                   video_id,
                                                   link.InnerText + video_found,
                                                   link.Attributes["href"].Value,
                                                   video_length,
                                                   true,
                                                   true));
                    }
                }
                else if (link.Attributes["href"].Value.Contains("alexanderstreet"))
                {
                    string video_id = link.Attributes["href"].Value.Split('/')
                                      .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                      .LastOrDefault();
                    TimeSpan video_length;
                    bool     cc;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetAlexanderStreenLinkLength(video_id, Chrome, Wait, out cc);
                        }
                    }

                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "AlexanderStreet Link",
                                                   video_id,
                                                   link.InnerText + video_found,
                                                   link.Attributes["href"].Value,
                                                   video_length,
                                                   cc,
                                                   cc));
                    }
                }
                else if (link.Attributes["href"].Value.Contains("kanopy"))
                {
                    string video_id = link.Attributes["href"].Value.Split('/')
                                      .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                      .LastOrDefault();
                    TimeSpan video_length;
                    bool     cc;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetKanopyLinkLength(video_id, Chrome, Wait, out cc);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Kanopy Link",
                                                   video_id,
                                                   link.InnerText + video_found,
                                                   link.Attributes["href"].Value,
                                                   video_length,
                                                   cc,
                                                   cc));
                    }
                }
                else if (link.Attributes["href"].Value.Contains("byu.mediasite"))
                {
                    string video_id = link.Attributes["href"].Value.Split('/')
                                      .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                      .LastOrDefault();
                    TimeSpan video_length;
                    bool     cc;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetBYUMediaSiteVideoLength(video_id, Chrome, Wait, out cc);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "ByuMediasite Link",
                                                   video_id,
                                                   link.InnerText + video_found,
                                                   link.Attributes["href"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(link),
                                                   cc));
                    }
                }
                else if (link.Attributes["href"].Value.Contains("panopto"))
                {
                    string video_id = link.Attributes["href"].Value.Split('/')
                                      .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                      .LastOrDefault();
                    video_id = video_id.CleanSplit("id=").LastOrDefault().CleanSplit("&").FirstOrDefault();

                    TimeSpan video_length;
                    bool     cc;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            if (link.Attributes["href"].Value.Contains("Viewer.aspx"))
                            {
                                video_length = VideoParser.GetPanoptoVideoViewerLength(video_id, Chrome, Wait, out cc);
                            }
                            else
                            {
                                video_length = VideoParser.GetPanoptoVideoLength(video_id, Chrome, Wait, out cc);
                            }
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Panopto Link",
                                                   video_id,
                                                   link.InnerText + video_found,
                                                   link.Attributes["href"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(link),
                                                   cc));
                    }
                }
                else if (link.Attributes["href"].Value.Contains("bcove"))
                {
                    string   video_id;
                    TimeSpan video_length;
                    bool     cc;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            Chrome.Url = link.Attributes["href"].Value;
                            try
                            {
                                Wait.UntilElementIsVisible(By.CssSelector("iframe"));
                            }catch
                            {
                            }


                            video_id = Chrome.Url.Split('=')
                                       .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                       .LastOrDefault();
                            video_length = VideoParser.GetBrightcoveVideoLength(video_id, Chrome, Wait, out cc, out BrightCoveVideoName);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Bcove Link",
                                                   video_id,
                                                   link.InnerText + video_found + BrightCoveVideoName,
                                                   link.Attributes["href"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(link),
                                                   cc));
                    }
                }
            }
        }
Esempio n. 17
0
        /// <summary>
        /// Main function to begin processing pages. Calls all the other functions.
        /// </summary>
        /// <param name="page_info"></param>
        public override void ProcessContent(Dictionary <string, string> page_info)
        {
            //Function to begin processing a page and storing the data within the Data list (see RParserBase class)
            //Make sure page is not empty
            var url = page_info.Keys.ElementAt(0);  //key is the url, points to the body (HTML)

            if (page_info[url] == null)
            {
                return;
            }
            //Ignore certain pages
            if (Options.FilesToIgnore.Contains(url.ToLower()))
            {
                return;
            }

            // No longer in use as we need to save a valid XPath. JavaScript messes it up.

            //// Go through the online version to make sure there aren't JS issues
            //if (new Regex(@"iscontent\.byu\.edu|isdev\.byu\.edu|file:///").IsMatch(url))
            //{   //Get the HTML from a browser so we can see if any accessibility issues were created with JavaScript.
            //    //This is run in a multi-threaded environment, so we want to limit how long we use the browser as it could dramtically slow things down if it tries to open to many.
            //    var chromeDriverService = ChromeDriverService.CreateDefaultService(PathToChromedriver);
            //    chromeDriverService.HideCommandPromptWindow = true;
            //    var ChromeOptions = new ChromeOptions();
            //    ChromeOptions.AddArguments("headless", "muteaudio");
            //    var Chrome = new ChromeDriver(chromeDriverService, ChromeOptions);
            //    var Wait = new WebDriverWait(Chrome, new TimeSpan(0, 0, 5));
            //    Chrome.Url = url;
            //    if (Chrome.isAlertPresent())
            //    {
            //        Chrome.SwitchTo().Alert().Dismiss();
            //        Chrome.SwitchTo().Window(Chrome.CurrentWindowHandle);
            //    }
            //    Wait.UntilPageLoads();
            //    if (Chrome.isAlertPresent())
            //    {
            //        Chrome.SwitchTo().Alert().Dismiss();
            //        Chrome.SwitchTo().Window(Chrome.CurrentWindowHandle);
            //    }
            //    var Online_PageDocument = new DataToParse(url, Chrome.FindElementByTagName("body").GetAttribute("outerHTML"));
            //    Chrome.Quit();
            //    ProcessLinks(Online_PageDocument);
            //    ProcessImages(Online_PageDocument);
            //    ProcessIframes(Online_PageDocument);
            //    ProcessTables(Online_PageDocument);
            //    ProcessBrightcoveVideoHTML(Online_PageDocument);
            //    ProcessHeaders(Online_PageDocument);
            //    ProcessSemantics(Online_PageDocument);
            //    ProcessVideoTags(Online_PageDocument);
            //    ProcessFlash(Online_PageDocument);
            //    ProcessColor(Online_PageDocument);
            //    ProcessMathJax(Online_PageDocument);
            //    ProcessOnclicks(Online_PageDocument);
            //    ProcessAudioElements(Online_PageDocument);
            //}
            //else
            //{   //For a canvas course. I want to avoid doing the above as this would require having to use Duo to log into BYU account to access the Canvas course.
            //    //May have to do the above if I find out JavaScript is being used within Canvas.
            //    //Set our current document (creates an HTML dom from the pages body)
            var PageDocument = new DataToParse(url, page_info[url]);

            //Process the elements of the page from the HTML
            ProcessLinks(PageDocument);
            ProcessImages(PageDocument);
            ProcessIframes(PageDocument);
            ProcessTables(PageDocument);
            ProcessBrightcoveVideoHTML(PageDocument);
            ProcessHeaders(PageDocument);
            ProcessSemantics(PageDocument);
            ProcessVideoTags(PageDocument);
            ProcessFlash(PageDocument);
            ProcessColor(PageDocument);
            ProcessMathJax(PageDocument);
            ProcessOnclicks(PageDocument);
            ProcessAudioElements(PageDocument);
            //}
        }
Esempio n. 18
0
        private void ProcessLinks(DataToParse PageDocument)
        {
            var link_list = PageDocument.Doc
                            .DocumentNode
                            .SelectNodes("//a");

            if (link_list == null)
            {
                return;
            }
            Parallel.ForEach(link_list, link =>
            {   //Run it in parralell as this takes forever otherwise. Still somewhat slow when running into a bunch of links
                if (link.Attributes["href"] != null)
                {
                    if (new Regex("^#").IsMatch(link.Attributes["href"].Value))
                    {
                        //Do nothing
                    }
                    else if (new Regex("^mailto:", RegexOptions.IgnoreCase).IsMatch(link.Attributes["href"].Value))
                    {
                        //Do nothing
                    }
                    else if (new Regex("^javascript:", RegexOptions.IgnoreCase).IsMatch(link.Attributes["href"].Value))
                    {
                        lock (Data)
                        {
                            Data.Add(new PageData(PageDocument.Location,
                                                  link.Attributes["href"].Value,
                                                  "",
                                                  "JavaScript links are often not accessible \\ broken."));
                        }
                    }
                    else if (new Regex("http|^www\\.|.*?\\.com$|.*?\\.org$", RegexOptions.IgnoreCase).IsMatch(link.Attributes["href"].Value))
                    {
                        if (!TestUrl(link.Attributes["href"].Value))
                        {
                            lock (Data)
                            {
                                Data.Add(new PageData(PageDocument.Location,
                                                      link.Attributes["href"].Value,
                                                      "",
                                                      "Broken link, needs to be checked"));
                            }
                        }
                    }
                    else
                    {
                        if (!TestPath(link.Attributes["href"].Value))
                        {
                            lock (Data)
                            {
                                Data.Add(new PageData(PageDocument.Location,
                                                      link.Attributes["href"].Value,
                                                      "",
                                                      "File does not exist"));
                            }
                        }
                    }
                }
            });
        }
Esempio n. 19
0
        private void ProcessLinks(DataToParse PageDocument)
        {
            //Get all links within page
            var link_list = PageDocument.Doc
                            .DocumentNode
                            .SelectNodes("//a");

            //Make sure its not null
            if (link_list == null)
            {
                return;
            }
            //Loop through all links
            foreach (var link in link_list)
            {
                if (link.Attributes["onclick"] != null)
                {   //Onclick links are not accessible
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Link", "", link.Attributes["onclick"].Value, "JavaScript links are not accessible", 1, link.XPath));
                    }
                }
                else if (link.Attributes["href"] == null)
                {   //Links should have an href
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Link", "", link.OuterHtml, "Empty link tag", 1, link.XPath));
                    }
                }
                if (link.InnerHtml.Contains("<img"))
                {   //If it is an image ignore it for now, need to check alt text
                    continue;
                }
                if (link.InnerText == null || link.InnerText == "")
                {   //See if it is a link without text
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Link", "", $"Invisible link with no text\n{link.OuterHtml}", "Adjust Link Text", 1, link.XPath));
                    }
                }
                else if (new Regex("^ ?here", RegexOptions.IgnoreCase).IsMatch(link.InnerText))
                {   //If it begins with the word here probably not descriptive link text
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Link", "", link.InnerText, "Adjust Link Text", 1, link.XPath));
                    }
                }
                else if (new Regex("^ ?[A-Za-z\\.]+ ?$").IsMatch(link.InnerText))
                {     //If it is a single word
                    if (link_list.Where(s => s.InnerText == link.InnerText).Count() > 1)
                    { //And if the single word is used for more then one link
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "Link", "", link.InnerText, "Adjust Link Text", 1, link.XPath));
                        }
                    }
                }
                else if (new Regex("http|www\\.|Link|Click", RegexOptions.IgnoreCase).IsMatch(link.InnerText))
                {     //See if it is just a url
                    if (new Regex("Links to an external site").IsMatch(link.InnerText))
                    { //This is commonly used in Canvas, we just ignore it
                        continue;
                    }
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Link", "", link.InnerText, "Adjust Link Text", 1, link.XPath));
                    }
                }
            }
        }
Esempio n. 20
0
        private void ProcessImages(DataToParse PageDocument)
        {
            //Get list of images
            var image_list = PageDocument.Doc
                             .DocumentNode
                             .SelectNodes("//img");

            //Make sure it is not null
            if (image_list == null)
            {
                return;
            }
            //Loop through all images
            foreach (var image in image_list)
            {
                var alt = image.Attributes["alt"]?.Value;
                //Get the alt text
                if (String.IsNullOrEmpty(alt))
                {   //Empty alt text should be manually checked for decortive qualities
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Image", "", image.OuterHtml, "Alt text may need adjustment or No alt attribute", 1, image.XPath));
                    }
                }
                else if (new Regex("banner", RegexOptions.IgnoreCase).IsMatch(alt))
                {   //Banners shouldn't have alt text
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Image", "", alt, "Alt text may need adjustment", 1, image.XPath));
                    }
                }
                else if (new Regex("Placeholder", RegexOptions.IgnoreCase).IsMatch(alt))
                {   //Placeholder probably means the alt text was forgotten to be changed
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Image", "", alt, "Alt text may need adjustment", 1, image.XPath));
                    }
                }
                else if (new Regex("\\.jpg", RegexOptions.IgnoreCase).IsMatch(alt))
                {   //Make sure it is not just the images file name
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Image", "", alt, "Alt text may need adjustment", 1, image.XPath));
                    }
                }
                else if (new Regex("\\.png", RegexOptions.IgnoreCase).IsMatch(alt))
                {
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Image", "", alt, "Alt text may need adjustment", 1, image.XPath));
                    }
                }
                else if (new Regex("http", RegexOptions.IgnoreCase).IsMatch(alt))
                {   //It should not be a url
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Image", "", alt, "Alt text may need adjustment", 1, image.XPath));
                    }
                }
                else if (new Regex("LaTeX:", RegexOptions.IgnoreCase).IsMatch(alt))
                {   //Should not be latex (ran into this a couple of times)
                    lock (Data)
                    {
                        Data.Add(new PageA11yData(PageDocument.Location, "Image", "", alt, "Alt text may need adjustment", 1, image.XPath));
                    }
                }
            }
        }
Esempio n. 21
0
        private void ProcessIframes(DataToParse PageDocument)
        {
            //Get list of iframes
            var iframe_list = PageDocument.Doc
                              .DocumentNode
                              .SelectNodes("//iframe");

            //Make sure its not null
            if (iframe_list == null)
            {
                return;
            }
            //Keep track of what iframe we are on
            var iframe_number = 1;

            foreach (var iframe in iframe_list)
            {
                //Get the source attribute, every iframe should have one
                var src = "";
                if (iframe.Attributes["src"] == null)
                {
                    if (iframe.Attributes["data-src"] != null)
                    {   //found that sometimes a data-src is used istead of the normal src
                        src = iframe.Attributes["data-src"].Value;
                    }
                    else
                    {
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location,
                                                      "Iframe",
                                                      "Can't find source",
                                                      "Unable to find iframe source",
                                                      "Iframes should all have a soruce",
                                                      3,
                                                      iframe.XPath));
                        }
                        continue;
                    }
                }
                else
                {
                    src = iframe.Attributes["src"].Value;
                }
                if (iframe.Attributes["title"] == null)
                {
                    //Only real accessiblity issue we can check is if it has a title or not
                    if (new Regex("youtube", RegexOptions.IgnoreCase).IsMatch(src))
                    {
                        //Get the youtube information
                        var uri     = new Uri(src);
                        var query   = System.Web.HttpUtility.ParseQueryString(uri.Query);
                        var videoId = string.Empty;
                        if (query.AllKeys.Contains("v"))
                        {
                            videoId = query["v"];
                        }
                        else
                        {
                            videoId = uri.Segments.LastOrDefault();
                        }
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "Youtube Video", videoId, "", "Needs a title", 1, iframe.XPath));
                        }
                    }
                    else if (new Regex("brightcove", RegexOptions.IgnoreCase).IsMatch(src))
                    {
                        //Get brightcove info
                        var videoId = src.CleanSplit("=").LastOrDefault().CleanSplit("&").FirstOrDefault();
                        if (!src.Contains("https:"))
                        {   //Make sure it has the https on it
                            src = $"https:{src}";
                        }
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "Brightcove Video", videoId, "", "Needs a title", 1, iframe.XPath));
                        }
                    }
                    else if (new Regex("H5P", RegexOptions.IgnoreCase).IsMatch(src))
                    {   //H5P can just be added
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "H5P", "", "", "Needs a title", 1, iframe.XPath));
                        }
                    }
                    else if (new Regex("byu\\.mediasite", RegexOptions.IgnoreCase).IsMatch(src))
                    {   //Get id
                        var videoId = src.CleanSplit("/").LastOrDefault();
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "BYU Mediasite Video", videoId, "", "Needs a title", 1, iframe.XPath));
                        }
                    }
                    else if (new Regex("panopto", RegexOptions.IgnoreCase).IsMatch(src))
                    {
                        var videoId = src.CleanSplit("id=").LastOrDefault().CleanSplit('&').FirstOrDefault();

                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "Panopto Video", videoId, "", "Needs a title", 1, iframe.XPath));
                        }
                    }
                    else if (new Regex("alexanderstreet", RegexOptions.IgnoreCase).IsMatch(src))
                    {
                        var videoId = src.Split(new string[] { "token/" }, StringSplitOptions.RemoveEmptyEntries)
                                      .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                      .LastOrDefault();
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "AlexanderStreen Video", videoId, "", "Needs a title", 1, iframe.XPath));
                        }
                    }
                    else if (new Regex("kanopy", RegexOptions.IgnoreCase).IsMatch(src))
                    {
                        var videoId = src.Split(new string[] { "embed/" }, StringSplitOptions.RemoveEmptyEntries)
                                      .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                      .LastOrDefault();
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "Kanopy Video", videoId, "", "Needs a title", 1, iframe.XPath));
                        }
                    }
                    else if (new Regex("ambrosevideo", RegexOptions.IgnoreCase).IsMatch(src))
                    {
                        var videoId = src.Split('?')
                                      .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                      .LastOrDefault()
                                      .Split('&')
                                      .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                      .FirstOrDefault();
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "Ambrose Video", videoId, "", "NEeds a title", 1, iframe.XPath));
                        }
                    }
                    else if (new Regex("facebook", RegexOptions.IgnoreCase).IsMatch(src))
                    {
                        var videoId = new Regex("\\d{17}").Match(src).Value;
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "Facebook Video", videoId, "", "Needs a title", 1, iframe.XPath));
                        }
                    }
                    else if (new Regex("dailymotion", RegexOptions.IgnoreCase).IsMatch(src))
                    {
                        var videoId = src.Split('/')
                                      .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                      .LastOrDefault();
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "Facebook Video", videoId, "", "Needs a title", 1, iframe.XPath));
                        }
                    }
                    else if (new Regex("vimeo", RegexOptions.IgnoreCase).IsMatch(src))
                    {
                        var videoId = src.Split('/')
                                      .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                      .LastOrDefault()
                                      .Split('?')
                                      .Where(s => !string.IsNullOrEmpty(s) && !string.IsNullOrWhiteSpace(s))
                                      .FirstOrDefault();
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "Vimeo Video", videoId, "", "Needs a title", 1, iframe.XPath));
                        }
                    }
                    else
                    {
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "Iframe", "", "", "Needs a title", 1, iframe.XPath));
                        }
                    }
                }
                if (new Regex("brightcove|byu\\.mediasite|panopto|vimeo|dailymotion|facebook|ambrosevideo|kanopy|alexanderstreet", RegexOptions.IgnoreCase).IsMatch(src))
                {   //If it is a video then need to check if there is a transcript
                    if (!VideoParser.CheckTranscript(iframe))
                    {
                        lock (Data)
                        {
                            Data.Add(new PageA11yData(PageDocument.Location, "Transcript", "", $"Video number {iframe_number} on page", "No transcript found", 5, iframe.XPath));
                        }
                    }
                }
                iframe_number++;
            }
        }
Esempio n. 22
0
        private void ProcessIframes(DataToParse PageDocument)
        {   //Process all the iframes for media elements
            var iframe_list = PageDocument.Doc
                              .DocumentNode
                              .SelectNodes("//iframe");

            if (iframe_list == null)
            {
                return;
            }
            var BrightCoveVideoName = "";

            foreach (var iframe in iframe_list)
            {
                string title = "";

                if (iframe.Attributes["title"] == null)
                {
                    title = "No title attribute found";
                }
                else
                {
                    title = iframe.Attributes["title"].Value;
                }

                if (iframe.Attributes["src"] == null)
                {
                    continue;
                }

                if (iframe.Attributes["src"].Value.Contains("youtube"))
                {
                    var uri      = new Uri((iframe.Attributes["src"].Value));
                    var query    = System.Web.HttpUtility.ParseQueryString(uri.Query);
                    var video_id = string.Empty;
                    if (query.AllKeys.Contains("v"))
                    {
                        video_id = query["v"];
                    }
                    else
                    {
                        video_id = uri.Segments.LastOrDefault();
                    }

                    TimeSpan video_length;
                    try
                    {
                        video_id     = video_id.CleanSplit("?").FirstOrDefault();
                        video_id     = video_id.CleanSplit("%").FirstOrDefault();
                        video_length = VideoParser.GetYoutubeVideoLength(video_id);
                    }
                    catch
                    {
                        Console.WriteLine("Video not found");
                        video_length = new TimeSpan(0);
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "YouTube Video",
                                                   video_id,
                                                   title + video_found,
                                                   iframe.Attributes["src"].Value,
                                                   video_length,
                                                   true,
                                                   true));
                    }
                }
                else if (iframe.Attributes["src"].Value.Contains("brightcove"))
                {
                    string   video_id = iframe.Attributes["src"].Value.CleanSplit("=").LastOrDefault().CleanSplit("&")[0];
                    TimeSpan video_length;
                    bool     cc;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetBrightcoveVideoLength(video_id, Chrome, Wait, out cc, out BrightCoveVideoName);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = iframe.Attributes["src"].Value.Contains("playlistId") ? "\nVideo playlist. Manual check for transcripts needed." : "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Brightcove Video",
                                                   video_id,
                                                   title + video_found + BrightCoveVideoName,
                                                   iframe.Attributes["src"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(iframe),
                                                   cc));
                    }
                }
                else if (iframe.Attributes["src"].Value.Contains("H5P"))
                {
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "H5P",
                                                   "",
                                                   title,
                                                   iframe.Attributes["src"].Value,
                                                   new TimeSpan(0),
                                                   true,
                                                   true));
                    }
                }
                else if (iframe.Attributes["src"].Value.Contains("byu.mediasite"))
                {
                    string video_id = iframe.Attributes["src"].Value.CleanSplit("/").LastOrDefault();
                    if (String.IsNullOrEmpty(video_id))
                    {
                        video_id = iframe.Attributes["src"].Value.CleanSplit("/").Reverse().Skip(1).FirstOrDefault();
                    }
                    TimeSpan video_length;
                    bool     cc;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetBYUMediaSiteVideoLength(video_id, Chrome, Wait, out cc);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "BYU Mediasite Video",
                                                   video_id,
                                                   title + video_found,
                                                   iframe.Attributes["src"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(iframe),
                                                   cc));
                    }
                }
                else if (iframe.Attributes["src"].Value.Contains("panopto"))
                {
                    string   video_id = iframe.Attributes["src"].Value.CleanSplit("id=").LastOrDefault().CleanSplit("&").FirstOrDefault();
                    TimeSpan video_length;
                    bool     cc;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetPanoptoVideoLength(video_id, Chrome, Wait, out cc);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Panopto Video",
                                                   video_id,
                                                   title + video_found,
                                                   iframe.Attributes["src"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(iframe),
                                                   cc));
                    }
                }
                else if (iframe.Attributes["src"].Value.Contains("alexanderstreet"))
                {
                    string   video_id = iframe.Attributes["src"].Value.CleanSplit("token/").LastOrDefault();
                    TimeSpan video_length;
                    bool     cc;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetAlexanderStreetVideoLength(video_id, Chrome, Wait, out cc);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "AlexanderStreet Video",
                                                   video_id,
                                                   title + video_found,
                                                   iframe.Attributes["src"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(iframe),
                                                   cc));
                    }
                }
                else if (iframe.Attributes["src"].Value.Contains("kanopy"))
                {
                    string   video_id = iframe.Attributes["src"].Value.CleanSplit("embed/").LastOrDefault();
                    TimeSpan video_length;
                    bool     cc;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetKanopyVideoLength(video_id, Chrome, Wait, out cc);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Kanopy Video",
                                                   video_id,
                                                   title + video_found,
                                                   iframe.Attributes["src"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(iframe),
                                                   cc));
                    }
                }
                else if (iframe.Attributes["src"].Value.Contains("ambrosevideo"))
                {
                    string   video_id = iframe.Attributes["src"].Value.CleanSplit("?").LastOrDefault().CleanSplit("&")[0];
                    TimeSpan video_length;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetAmbroseVideoLength(video_id, Chrome, Wait);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Ambrose Video",
                                                   video_id,
                                                   title + video_found,
                                                   iframe.Attributes["src"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(iframe)));
                    }
                }
                else if (iframe.Attributes["src"].Value.Contains("facebook"))
                {
                    string   video_id = new Regex("\\d{17}").Match(iframe.Attributes["src"].Value).Value;
                    TimeSpan video_length;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetFacebookVideoLength(video_id, Chrome, Wait);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Facebook Video",
                                                   video_id,
                                                   title + video_found,
                                                   iframe.Attributes["src"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(iframe)));
                    }
                }
                else if (iframe.Attributes["src"].Value.Contains("dailymotion"))
                {
                    string   video_id = iframe.Attributes["src"].Value.CleanSplit("/").LastOrDefault();
                    TimeSpan video_length;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetDailyMotionVideoLength(video_id, Chrome, Wait);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "DailyMotion Video",
                                                   video_id,
                                                   title + video_found,
                                                   iframe.Attributes["src"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(iframe)));
                    }
                }
                else if (iframe.Attributes["src"].Value.Contains("vimeo"))
                {
                    string   video_id = iframe.Attributes["src"].Value.CleanSplit("/").LastOrDefault().CleanSplit("?")[0];
                    TimeSpan video_length;
                    lock (Chrome)
                    {
                        lock (Wait)
                        {
                            video_length = VideoParser.GetVimeoVideoLength(video_id, Chrome, Wait);
                        }
                    }
                    string video_found;
                    if (video_length == new TimeSpan(0))
                    {
                        video_found = "\nVideo not found";
                    }
                    else
                    {
                        video_found = "";
                    }
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Vimeo Video",
                                                   video_id,
                                                   title + video_found,
                                                   iframe.Attributes["src"].Value,
                                                   video_length,
                                                   VideoParser.CheckTranscript(iframe)));
                    }
                }
                else
                {
                    lock (Data)
                    {
                        Data.Add(new PageMediaData(PageDocument.Location,
                                                   "Iframe",
                                                   "",
                                                   title,
                                                   iframe.Attributes["src"].Value,
                                                   new TimeSpan(0),
                                                   true,
                                                   true));
                    }
                }
            }
        }