mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-10 14:42:49 +01:00
38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
using CefSharp;
|
|
using System;
|
|
using System.IO;
|
|
using System.Text;
|
|
using TweetDuck.Core.Other;
|
|
|
|
namespace TweetDuck.Resources{
|
|
static class ScriptLoader{
|
|
private const string UrlPrefix = "td:";
|
|
|
|
public static string LoadResource(string name, bool silent = false){
|
|
try{
|
|
return File.ReadAllText(Path.Combine(Program.ScriptPath, name), Encoding.UTF8);
|
|
}catch(Exception ex){
|
|
if (!silent){
|
|
FormMessage.Error("TweetDuck Has Failed :(", "Unfortunately, TweetDuck could not load the "+name+" file. The program will continue running with limited functionality.\n\n"+ex.Message, FormMessage.OK);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public static void ExecuteFile(IFrame frame, string file){
|
|
ExecuteScript(frame, LoadResource(file), GetRootIdentifier(file));
|
|
}
|
|
|
|
public static void ExecuteScript(IFrame frame, string script, string identifier){
|
|
if (script != null){
|
|
frame.ExecuteJavaScriptAsync(script, UrlPrefix+identifier, 1);
|
|
}
|
|
}
|
|
|
|
public static string GetRootIdentifier(string file){
|
|
return "root:"+Path.GetFileNameWithoutExtension(file);
|
|
}
|
|
}
|
|
}
|