This repository has been archived on 2025-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
xerobrowser/WebBrowser/frmBrowser.cs
2023-02-20 23:24:10 +13:00

243 lines
8.9 KiB
C#

using Bunifu.Utils;
using CefSharp;
using CefSharp.WinForms;
using DiamondCreeperBrowser;
using XeroBrowser.Properties;
using EasyTabs;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using CefSharp.DevTools.Network;
using CefSharp.DevTools.Page;
using System.Runtime.Versioning;
using System.Xml.Linq;
using System.IO;
namespace WebBrowser
{
public partial class frmBrowser : Form
{
Uri fileUri;
Uri fileUri2;
public frmBrowser()
{
InitializeComponent();
chromiumWebBrowser1.DownloadHandler = new DownloadHandler(this);
chromiumWebBrowser1.LifeSpanHandler = new LifeSpanHandler();
chromiumWebBrowser1.MenuHandler = new MenuHandler();
chromiumWebBrowser1.DisplayHandler = new DisplayHandler(this);
string filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "index.html");
fileUri = new Uri(filePath);
string fileUrl = fileUri.AbsoluteUri;
chromiumWebBrowser1.Load(fileUrl);
txtSearchOrUrl.Text = "";
Form.CheckForIllegalCrossThreadCalls = false;
}
public TitleBarTabs ParentTabs
{
get
{
return (ParentForm as TitleBarTabs);
}
}
private void btnForward_Click(object sender, EventArgs e)
{
if (chromiumWebBrowser1.CanGoForward) chromiumWebBrowser1.Forward();
}
public void ChangeUrl(string url)
{
chromiumWebBrowser1.Load(url);
}
private void btnBack_Click(object sender, EventArgs e)
{
if (chromiumWebBrowser1.CanGoBack) chromiumWebBrowser1.Back();
}
private void btnRefresh_Click(object sender, EventArgs e)
{
chromiumWebBrowser1.Reload();
}
private bool isBlocked = false;
private void chromiumWebBrowser1_LoadingStateChanged(object sender, LoadingStateChangedEventArgs e)
{
if (e.IsLoading)
{
this.loadingIndicator.Visible = true;
this.btnRefresh.Visible = false;
}
else
{
this.loadingIndicator.Visible = false;
this.btnRefresh.Visible = true;
}
try
{
if (this == null)
return;
this.Invoke((Action)delegate
{
if (txtSearchOrUrl != null && chromiumWebBrowser1 != null)
{
if (!chromiumWebBrowser1.Address.EndsWith(fileUri.ToString()))
{
txtSearchOrUrl.Text = chromiumWebBrowser1.Address;
}
else
{
txtSearchOrUrl.Text = "";
}
}
});
}
catch (ObjectDisposedException) { }
catch (InvalidAsynchronousStateException) { }
var uri = new Uri(chromiumWebBrowser1.Address);
if (uri.Scheme == "file")
{
txtSearchOrUrl.IconLeft = XeroBrowser.Properties.Resources.local;
}
else if (uri.Scheme == "https")
{
txtSearchOrUrl.IconLeft = XeroBrowser.Properties.Resources.secure;
}
else
{
txtSearchOrUrl.IconLeft = XeroBrowser.Properties.Resources.insecure1;
if (!isBlocked)
{
MessageBox.Show("Warning: This site is insecure!, Your personal information may be at risk or hackers can install malicious software on your device.", "Xero Browser", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Warning);
}
}
// if (txtSearchOrUrl.Text.Contains("netflix.com"))
// {
//MessageBox.Show("This site requires a DRM (Digital Rights Management) which Xero Browser does not support! TV Shows & Moves will not load.", "Xero Browser", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Warning);
// chromiumWebBrowser1.Stop(); // cancel the navigation
// isBlocked = true;
// chromiumWebBrowser1.LoadHtml("<html><body><h1>Error!</h1><h3>This site requires a DRM (Digital Rights Management) which Xero Browser does not support! TV Shows & Moves will not load.</h3></body></html>");
// }
// else if (txtSearchOrUrl.Text.Contains("disneyplus.com"))
// {
// MessageBox.Show("This site requires a DRM (Digital Rights Management) which Xero Browser does not support! TV Shows & Moves will not load.", "Xero Browser", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Warning);
// }
if (e.IsLoading)
{
// Don't return, allow the code to execute the rest of the logic
}
string[] blockedUrls = { "https://diamondcreeper.org/1337", "https://www.youtube.com/watch?v=dQw4w9WgXcQ", "https://www.youtube.com/watch?v=xm3YgoEiEDc", "https://www.youtube.com/watch?v=xvFZjo5PgG0", "https://www.youtube.com/watch?v=O91DT1pR1ew", "https://www.youtube.com/watch?v=o-YBDTqX_ZU", "https://www.youtube.com/watch?v=H8ZH_mkfPUY", "https://www.youtube.com/watch?v=o-YBDTqX_ZU", "https://www.youtube.com/watch?v=xvFZjo5PgG0" };
string[] blockedDrms = { "netflix.com", "disneyplus.com" };
if (!isBlocked)
{
foreach (string blockedDrm in blockedDrms)
{
if (chromiumWebBrowser1.Address.StartsWith(blockedDrm))
{
chromiumWebBrowser1.Stop(); // cancel the navigation
isBlocked = true;
chromiumWebBrowser1.LoadHtml("<html><body><h1>Error!</h1><h3>This website requires a DRM (Digital Rights Management) which Xero Browser does not support!</h3></body></html>", blockedDrm);
}
};
foreach (string blockedUrl in blockedUrls)
{
if (chromiumWebBrowser1.Address.StartsWith(blockedUrl))
{
chromiumWebBrowser1.Stop(); // cancel the navigation
isBlocked = true;
chromiumWebBrowser1.LoadHtml("<html><body><h1>Rickroll Blocked!</h1><p>Being rickrolled is disabled.</p></body></html>", blockedUrl);
}
};
}
}
private void chromiumWebBrowser1_TitleChanged(object sender, TitleChangedEventArgs e)
{
try
{
this.Invoke((Action)delegate { this.FindForm().Text = e.Title; });
}
catch (ObjectDisposedException) { }
}
private void btnSettings_Click(object sender, EventArgs e)
{
Backdrop.Show(new frmSettings());
}
private void chromiumWebBrowser1_KeyDown(object sender, KeyEventArgs e)
{
}
private void bunifuImageButton1_Click(object sender, EventArgs e)
{
chromiumWebBrowser1.ShowDevTools();
}
private void chromiumWebBrowser1_LoadError(object sender, LoadErrorEventArgs e)
{
string filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "loaderror.html");
fileUri2 = new Uri(filePath);
string fileUrl = fileUri2.AbsoluteUri;
}
private void bunifuImageButton2_Click(object sender, EventArgs e, frmSettings frmSettings)
{
string url = frmSettings.bunifuTextBox1.Text; // Get the URL from the text box on the form
chromiumWebBrowser1.Load(url); // Navigate to the specified URL
}
private void txtSearchOrUrl_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter && txtSearchOrUrl.Text.Trim().Length > 0)
{
if (txtSearchOrUrl.Text.Contains("."))
{
chromiumWebBrowser1.Load(txtSearchOrUrl.Text.Trim());
}
else
{
chromiumWebBrowser1.Load("https://www.google.com/search?q=" + txtSearchOrUrl.Text.Trim().Replace(" ", "+") + "&sourceid=chrome&ie=UTF-8");
}
}
}
private void txtSearchOrUrl_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
e.Handled = true;
e.SuppressKeyPress = true;
}
}
}
}