123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550 |
- /* This file is part of OpenSubtitles Handler
- A library that handle OpenSubtitles.org XML-RPC methods.
- Copyright © Ala Ibrahim Hadid 2013
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- using System;
- using System.Text;
- using System.Collections.Generic;
- using System.IO;
- using System.Threading;
- using System.Threading.Tasks;
- using OpenSubtitlesHandler.Console;
- using XmlRpcHandler;
- namespace OpenSubtitlesHandler
- {
- /// <summary>
- /// The core of the OpenSubtitles Handler library. All members are static.
- /// </summary>
- public sealed class OpenSubtitles
- {
- private static string XML_PRC_USERAGENT = "";
- // This is session id after log in, important value and MUST be set by LogIn before any other call.
- private static string TOKEN = "";
- /// <summary>
- /// Set the useragent value. This must be called before doing anything else.
- /// </summary>
- /// <param name="agent">The useragent value</param>
- public static void SetUserAgent(string agent)
- {
- XML_PRC_USERAGENT = agent;
- }
- /*Session handling*/
- /// <summary>
- /// Send a LogIn request, this must be called before anything else in this class.
- /// </summary>
- /// <param name="userName">The user name of OpenSubtitles</param>
- /// <param name="password">The password</param>
- /// <param name="language">The language, usally en</param>
- /// <returns>Status of the login operation</returns>
- public static IMethodResponse LogIn(string userName, string password, string language)
- {
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(userName));
- parms.Add(new XmlRpcValueBasic(password));
- parms.Add(new XmlRpcValueBasic(language));
- parms.Add(new XmlRpcValueBasic(XML_PRC_USERAGENT));
- XmlRpcMethodCall call = new XmlRpcMethodCall("LogIn", parms);
- OSHConsole.WriteLine("Sending LogIn request to the server ...", DebugCode.Good);
- //File.WriteAllText(".\\request.txt", Encoding.UTF8.GetString(XmlRpcGenerator.Generate(call)));
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response. We expect Struct here.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- MethodResponseLogIn re = new MethodResponseLogIn("Success", "Log in successful.");
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "token": re.Token = TOKEN = MEMBER.Data.Data.ToString(); OSHConsole.WriteLine(MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": re.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "status": re.Status = MEMBER.Data.Data.ToString(); OSHConsole.WriteLine(MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- }
- }
- return re;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "Log in failed !");
- }
- public static async Task<IMethodResponse> LogInAsync(string userName, string password, string language, CancellationToken cancellationToken)
- {
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(userName));
- parms.Add(new XmlRpcValueBasic(password));
- parms.Add(new XmlRpcValueBasic(language));
- parms.Add(new XmlRpcValueBasic(XML_PRC_USERAGENT));
- XmlRpcMethodCall call = new XmlRpcMethodCall("LogIn", parms);
- OSHConsole.WriteLine("Sending LogIn request to the server ...", DebugCode.Good);
- //File.WriteAllText(".\\request.txt", Encoding.UTF8.GetString(XmlRpcGenerator.Generate(call)));
- // Send the request to the server
- var stream = await Utilities.SendRequestAsync(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT, cancellationToken)
- .ConfigureAwait(false);
- string response = Utilities.GetStreamString(stream);
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response. We expect Struct here.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- MethodResponseLogIn re = new MethodResponseLogIn("Success", "Log in successful.");
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "token": re.Token = TOKEN = MEMBER.Data.Data.ToString(); OSHConsole.WriteLine(MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": re.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "status": re.Status = MEMBER.Data.Data.ToString(); OSHConsole.WriteLine(MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- }
- }
- return re;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "Log in failed !");
- }
-
- /// <summary>
- /// Log out from the server. Call this to terminate the session.
- /// </summary>
- /// <returns></returns>
- public static IMethodResponse LogOut()
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- XmlRpcMethodCall call = new XmlRpcMethodCall("LogOut", parms);
- OSHConsole.WriteLine("Sending LogOut request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response. We expect Struct here.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct strct = (XmlRpcValueStruct)calls[0].Parameters[0];
- OSHConsole.WriteLine("STATUS=" + ((XmlRpcValueBasic)strct.Members[0].Data).Data.ToString());
- OSHConsole.WriteLine("SECONDS=" + ((XmlRpcValueBasic)strct.Members[1].Data).Data.ToString());
- MethodResponseLogIn re = new MethodResponseLogIn("Success", "Log out successful.");
- re.Status = ((XmlRpcValueBasic)strct.Members[0].Data).Data.ToString();
- re.Seconds = (double)((XmlRpcValueBasic)strct.Members[1].Data).Data;
- return re;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "Log out failed !");
- }
- /// <summary>
- /// keep-alive user's session, verify token/session validity
- /// </summary>
- /// <returns>Status of the call operation</returns>
- public static IMethodResponse NoOperation()
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- parms.Add(new XmlRpcValueBasic(XML_PRC_USERAGENT, XmlRpcBasicValueType.String));
- XmlRpcMethodCall call = new XmlRpcMethodCall("NoOperation", parms);
- OSHConsole.WriteLine("Sending NoOperation request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response. We expect Struct here.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- MethodResponseNoOperation R = new MethodResponseNoOperation();
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(MEMBER.Name + "= " + MEMBER.Data.Data); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(MEMBER.Name + "= " + MEMBER.Data.Data); break;
- case "download_limits":
- XmlRpcValueStruct dlStruct = (XmlRpcValueStruct)MEMBER.Data;
- foreach (XmlRpcStructMember dlmember in dlStruct.Members)
- {
- OSHConsole.WriteLine(" >" + dlmember.Name + "= " + dlmember.Data.Data.ToString());
- switch (dlmember.Name)
- {
- case "global_wrh_download_limit": R.global_wrh_download_limit = dlmember.Data.Data.ToString(); break;
- case "client_ip": R.client_ip = dlmember.Data.Data.ToString(); break;
- case "limit_check_by": R.limit_check_by = dlmember.Data.Data.ToString(); break;
- case "client_24h_download_count": R.client_24h_download_count = dlmember.Data.Data.ToString(); break;
- case "client_downlaod_quota": R.client_downlaod_quota = dlmember.Data.Data.ToString(); break;
- case "client_24h_download_limit": R.client_24h_download_limit = dlmember.Data.Data.ToString(); break;
- }
- }
- break;
- }
- }
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "NoOperation call failed !");
- }
- /*Search and download*/
- /// <summary>
- /// Search for subtitle files matching your videos using either video file hashes or IMDb IDs.
- /// </summary>
- /// <param name="parameters">List of search subtitle parameters which each one represents 'struct parameter' as descriped at http://trac.opensubtitles.org/projects/opensubtitles/wiki/XmlRpcSearchSubtitles </param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseSubtitleSearch'</returns>
- public static IMethodResponse SearchSubtitles(SubtitleSearchParameters[] parameters)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- if (parameters == null)
- {
- OSHConsole.UpdateLine("No subtitle search parameter passed !!", DebugCode.Error);
- return new MethodResponseError("Fail", "No subtitle search parameter passed"); ;
- }
- if (parameters.Length == 0)
- {
- OSHConsole.UpdateLine("No subtitle search parameter passed !!", DebugCode.Error);
- return new MethodResponseError("Fail", "No subtitle search parameter passed"); ;
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- // Add token param
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- // Add subtitle search parameters. Each one will be like 'array' of structs.
- XmlRpcValueArray array = new XmlRpcValueArray();
- foreach (SubtitleSearchParameters param in parameters)
- {
- XmlRpcValueStruct strct = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- // sublanguageid member
- XmlRpcStructMember member = new XmlRpcStructMember("sublanguageid",
- new XmlRpcValueBasic(param.SubLangaugeID, XmlRpcBasicValueType.String));
- strct.Members.Add(member);
- // moviehash member
- if (param.MovieHash.Length > 0 && param.MovieByteSize > 0) {
- member = new XmlRpcStructMember("moviehash",
- new XmlRpcValueBasic(param.MovieHash, XmlRpcBasicValueType.String));
- strct.Members.Add(member);
- // moviehash member
- member = new XmlRpcStructMember("moviebytesize",
- new XmlRpcValueBasic(param.MovieByteSize, XmlRpcBasicValueType.Int));
- strct.Members.Add(member);
- }
- if (param.Query.Length > 0) {
- member = new XmlRpcStructMember("query",
- new XmlRpcValueBasic(param.Query, XmlRpcBasicValueType.String));
- strct.Members.Add(member);
- }
- if (param.Episode.Length > 0 && param.Season.Length>0) {
- member = new XmlRpcStructMember("season",
- new XmlRpcValueBasic(param.Season, XmlRpcBasicValueType.String));
- strct.Members.Add(member);
- member = new XmlRpcStructMember("episode",
- new XmlRpcValueBasic(param.Episode, XmlRpcBasicValueType.String));
- strct.Members.Add(member);
- }
- // imdbid member
- if (param.IMDbID.Length > 0)
- {
- member = new XmlRpcStructMember("imdbid",
- new XmlRpcValueBasic(param.IMDbID, XmlRpcBasicValueType.String));
- strct.Members.Add(member);
- }
- // Add the struct to the array
- array.Values.Add(strct);
- }
- // Add the array to the parameters
- parms.Add(array);
- // Call !
- XmlRpcMethodCall call = new XmlRpcMethodCall("SearchSubtitles", parms);
- OSHConsole.WriteLine("Sending SearchSubtitles request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- // We expect Struct of 3 members:
- //* the first is status
- //* the second is [array of structs, each one includes subtitle file].
- //* the third is [double basic value] represent seconds token by server.
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseSubtitleSearch R = new MethodResponseSubtitleSearch();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- if (MEMBER.Name == "status")
- {
- R.Status = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine("Status= " + R.Status);
- }
- else if (MEMBER.Name == "seconds")
- {
- R.Seconds = (double)MEMBER.Data.Data;
- OSHConsole.WriteLine("Seconds= " + R.Seconds);
- }
- else if (MEMBER.Name == "data")
- {
- if (MEMBER.Data is XmlRpcValueArray)
- {
- OSHConsole.WriteLine("Search results: ");
- XmlRpcValueArray rarray = (XmlRpcValueArray)MEMBER.Data;
- foreach (IXmlRpcValue subStruct in rarray.Values)
- {
- if (subStruct == null) continue;
- if (!(subStruct is XmlRpcValueStruct)) continue;
- SubtitleSearchResult result = new SubtitleSearchResult();
- foreach (XmlRpcStructMember submember in ((XmlRpcValueStruct)subStruct).Members)
- {
- // To avoid errors of arranged info or missing ones, let's do it with switch..
- switch (submember.Name)
- {
- case "IDMovie": result.IDMovie = submember.Data.Data.ToString(); break;
- case "IDMovieImdb": result.IDMovieImdb = submember.Data.Data.ToString(); break;
- case "IDSubMovieFile": result.IDSubMovieFile = submember.Data.Data.ToString(); break;
- case "IDSubtitle": result.IDSubtitle = submember.Data.Data.ToString(); break;
- case "IDSubtitleFile": result.IDSubtitleFile = submember.Data.Data.ToString(); break;
- case "ISO639": result.ISO639 = submember.Data.Data.ToString(); break;
- case "LanguageName": result.LanguageName = submember.Data.Data.ToString(); break;
- case "MovieByteSize": result.MovieByteSize = submember.Data.Data.ToString(); break;
- case "MovieHash": result.MovieHash = submember.Data.Data.ToString(); break;
- case "MovieImdbRating": result.MovieImdbRating = submember.Data.Data.ToString(); break;
- case "MovieName": result.MovieName = submember.Data.Data.ToString(); break;
- case "MovieNameEng": result.MovieNameEng = submember.Data.Data.ToString(); break;
- case "MovieReleaseName": result.MovieReleaseName = submember.Data.Data.ToString(); break;
- case "MovieTimeMS": result.MovieTimeMS = submember.Data.Data.ToString(); break;
- case "MovieYear": result.MovieYear = submember.Data.Data.ToString(); break;
- case "SubActualCD": result.SubActualCD = submember.Data.Data.ToString(); break;
- case "SubAddDate": result.SubAddDate = submember.Data.Data.ToString(); break;
- case "SubAuthorComment": result.SubAuthorComment = submember.Data.Data.ToString(); break;
- case "SubBad": result.SubBad = submember.Data.Data.ToString(); break;
- case "SubDownloadLink": result.SubDownloadLink = submember.Data.Data.ToString(); break;
- case "SubDownloadsCnt": result.SubDownloadsCnt = submember.Data.Data.ToString(); break;
- case "SeriesEpisode": result.SeriesEpisode = submember.Data.Data.ToString(); break;
- case "SeriesSeason": result.SeriesSeason = submember.Data.Data.ToString(); break;
- case "SubFileName": result.SubFileName = submember.Data.Data.ToString(); break;
- case "SubFormat": result.SubFormat = submember.Data.Data.ToString(); break;
- case "SubHash": result.SubHash = submember.Data.Data.ToString(); break;
- case "SubLanguageID": result.SubLanguageID = submember.Data.Data.ToString(); break;
- case "SubRating": result.SubRating = submember.Data.Data.ToString(); break;
- case "SubSize": result.SubSize = submember.Data.Data.ToString(); break;
- case "SubSumCD": result.SubSumCD = submember.Data.Data.ToString(); break;
- case "UserID": result.UserID = submember.Data.Data.ToString(); break;
- case "UserNickName": result.UserNickName = submember.Data.Data.ToString(); break;
- case "ZipDownloadLink": result.ZipDownloadLink = submember.Data.Data.ToString(); break;
- }
- }
- R.Results.Add(result);
- OSHConsole.WriteLine(">" + result.ToString());
- }
- }
- else// Unknown data ?
- {
- OSHConsole.WriteLine("Data= " + MEMBER.Data.Data.ToString(), DebugCode.Warning);
- }
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "Search Subtitles call failed !");
- }
- /// <summary>
- /// Download subtitle file(s)
- /// </summary>
- /// <param name="subIDS">The subtitle IDS (an array of IDSubtitleFile value that given by server as SearchSubtiles results)</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseSubtitleDownload' which will hold downloaded subtitles</returns>
- public static IMethodResponse DownloadSubtitles(int[] subIDS)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- if (subIDS == null)
- {
- OSHConsole.UpdateLine("No subtitle id passed !!", DebugCode.Error);
- return new MethodResponseError("Fail", "No subtitle id passed"); ;
- }
- if (subIDS.Length == 0)
- {
- OSHConsole.UpdateLine("No subtitle id passed !!", DebugCode.Error);
- return new MethodResponseError("Fail", "No subtitle id passed"); ;
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- // Add token param
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- // Add subtitle search parameters. Each one will be like 'array' of structs.
- XmlRpcValueArray array = new XmlRpcValueArray();
- foreach (int id in subIDS)
- {
- array.Values.Add(new XmlRpcValueBasic(id, XmlRpcBasicValueType.Int));
- }
- // Add the array to the parameters
- parms.Add(array);
- // Call !
- XmlRpcMethodCall call = new XmlRpcMethodCall("DownloadSubtitles", parms);
- OSHConsole.WriteLine("Sending DownloadSubtitles request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- // We expect Struct of 3 members:
- //* the first is status
- //* the second is [array of structs, each one includes subtitle file].
- //* the third is [double basic value] represent seconds token by server.
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseSubtitleDownload R = new MethodResponseSubtitleDownload();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- if (MEMBER.Name == "status")
- {
- R.Status = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine("Status= " + R.Status);
- }
- else if (MEMBER.Name == "seconds")
- {
- R.Seconds = (double)MEMBER.Data.Data;
- OSHConsole.WriteLine("Seconds= " + R.Seconds);
- }
- else if (MEMBER.Name == "data")
- {
- if (MEMBER.Data is XmlRpcValueArray)
- {
- OSHConsole.WriteLine("Download results:");
- XmlRpcValueArray rarray = (XmlRpcValueArray)MEMBER.Data;
- foreach (IXmlRpcValue subStruct in rarray.Values)
- {
- if (subStruct == null) continue;
- if (!(subStruct is XmlRpcValueStruct)) continue;
- SubtitleDownloadResult result = new SubtitleDownloadResult();
- foreach (XmlRpcStructMember submember in ((XmlRpcValueStruct)subStruct).Members)
- {
- // To avoid errors of arranged info or missing ones, let's do it with switch..
- switch (submember.Name)
- {
- case "idsubtitlefile": result.IdSubtitleFile = (string)submember.Data.Data; break;
- case "data": result.Data = (string)submember.Data.Data; break;
- }
- }
- R.Results.Add(result);
- OSHConsole.WriteLine("> IDSubtilteFile= " + result.ToString());
- }
- }
- else// Unknown data ?
- {
- OSHConsole.WriteLine("Data= " + MEMBER.Data.Data.ToString(), DebugCode.Warning);
- }
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "DownloadSubtitles call failed !");
- }
- public static async Task<IMethodResponse> DownloadSubtitlesAsync(int[] subIDS, CancellationToken cancellationToken)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- if (subIDS == null)
- {
- OSHConsole.UpdateLine("No subtitle id passed !!", DebugCode.Error);
- return new MethodResponseError("Fail", "No subtitle id passed"); ;
- }
- if (subIDS.Length == 0)
- {
- OSHConsole.UpdateLine("No subtitle id passed !!", DebugCode.Error);
- return new MethodResponseError("Fail", "No subtitle id passed"); ;
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- // Add token param
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- // Add subtitle search parameters. Each one will be like 'array' of structs.
- XmlRpcValueArray array = new XmlRpcValueArray();
- foreach (int id in subIDS)
- {
- array.Values.Add(new XmlRpcValueBasic(id, XmlRpcBasicValueType.Int));
- }
- // Add the array to the parameters
- parms.Add(array);
- // Call !
- XmlRpcMethodCall call = new XmlRpcMethodCall("DownloadSubtitles", parms);
- OSHConsole.WriteLine("Sending DownloadSubtitles request to the server ...", DebugCode.Good);
- // Send the request to the server
- var httpResponse = await Utilities.SendRequestAsync(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT, cancellationToken).ConfigureAwait(false);
- string response = Utilities.GetStreamString(httpResponse);
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- // We expect Struct of 3 members:
- //* the first is status
- //* the second is [array of structs, each one includes subtitle file].
- //* the third is [double basic value] represent seconds token by server.
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseSubtitleDownload R = new MethodResponseSubtitleDownload();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- if (MEMBER.Name == "status")
- {
- R.Status = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine("Status= " + R.Status);
- }
- else if (MEMBER.Name == "seconds")
- {
- R.Seconds = (double)MEMBER.Data.Data;
- OSHConsole.WriteLine("Seconds= " + R.Seconds);
- }
- else if (MEMBER.Name == "data")
- {
- if (MEMBER.Data is XmlRpcValueArray)
- {
- OSHConsole.WriteLine("Download results:");
- XmlRpcValueArray rarray = (XmlRpcValueArray)MEMBER.Data;
- foreach (IXmlRpcValue subStruct in rarray.Values)
- {
- if (subStruct == null) continue;
- if (!(subStruct is XmlRpcValueStruct)) continue;
- SubtitleDownloadResult result = new SubtitleDownloadResult();
- foreach (XmlRpcStructMember submember in ((XmlRpcValueStruct)subStruct).Members)
- {
- // To avoid errors of arranged info or missing ones, let's do it with switch..
- switch (submember.Name)
- {
- case "idsubtitlefile": result.IdSubtitleFile = (string)submember.Data.Data; break;
- case "data": result.Data = (string)submember.Data.Data; break;
- }
- }
- R.Results.Add(result);
- OSHConsole.WriteLine("> IDSubtilteFile= " + result.ToString());
- }
- }
- else// Unknown data ?
- {
- OSHConsole.WriteLine("Data= " + MEMBER.Data.Data.ToString(), DebugCode.Warning);
- }
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "DownloadSubtitles call failed !");
- }
-
- /// <summary>
- /// Returns comments for subtitles
- /// </summary>
- /// <param name="subIDS">The subtitle IDS (an array of IDSubtitleFile value that given by server as SearchSubtiles results)</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseGetComments'</returns>
- public static IMethodResponse GetComments(int[] subIDS)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- if (subIDS == null)
- {
- OSHConsole.UpdateLine("No subtitle id passed !!", DebugCode.Error);
- return new MethodResponseError("Fail", "No subtitle id passed"); ;
- }
- if (subIDS.Length == 0)
- {
- OSHConsole.UpdateLine("No subtitle id passed !!", DebugCode.Error);
- return new MethodResponseError("Fail", "No subtitle id passed"); ;
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- // Add token param
- parms.Add(new XmlRpcValueBasic(TOKEN));
- // Add subtitle search parameters. Each one will be like 'array' of structs.
- XmlRpcValueArray array = new XmlRpcValueArray(subIDS);
- // Add the array to the parameters
- parms.Add(array);
- // Call !
- XmlRpcMethodCall call = new XmlRpcMethodCall("GetComments", parms);
- OSHConsole.WriteLine("Sending GetComments request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseGetComments R = new MethodResponseGetComments();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- if (MEMBER.Name == "status")
- {
- R.Status = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine("Status= " + R.Status);
- }
- else if (MEMBER.Name == "seconds")
- {
- R.Seconds = (double)MEMBER.Data.Data;
- OSHConsole.WriteLine("Seconds= " + R.Seconds);
- }
- else if (MEMBER.Name == "data")
- {
- if (MEMBER.Data is XmlRpcValueArray)
- {
- OSHConsole.WriteLine("Comments results:");
- XmlRpcValueArray rarray = (XmlRpcValueArray)MEMBER.Data;
- foreach (IXmlRpcValue commentStruct in rarray.Values)
- {
- if (commentStruct == null) continue;
- if (!(commentStruct is XmlRpcValueStruct)) continue;
- GetCommentsResult result = new GetCommentsResult();
- foreach (XmlRpcStructMember commentmember in ((XmlRpcValueStruct)commentStruct).Members)
- {
- // To avoid errors of arranged info or missing ones, let's do it with switch..
- switch (commentmember.Name)
- {
- case "IDSubtitle": result.IDSubtitle = (string)commentmember.Data.Data; break;
- case "UserID": result.UserID = (string)commentmember.Data.Data; break;
- case "UserNickName": result.UserNickName = (string)commentmember.Data.Data; break;
- case "Comment": result.Comment = (string)commentmember.Data.Data; break;
- case "Created": result.Created = (string)commentmember.Data.Data; break;
- }
- }
- R.Results.Add(result);
- OSHConsole.WriteLine("> IDSubtitle= " + result.ToString());
- }
- }
- else// Unknown data ?
- {
- OSHConsole.WriteLine("Data= " + MEMBER.Data.Data.ToString(), DebugCode.Warning);
- }
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "GetComments call failed !");
- }
- /// <summary>
- /// Schedule a periodical search for subtitles matching given video files, send results to user's e-mail address.
- /// </summary>
- /// <param name="languageIDS">The language 3 lenght ids array</param>
- /// <param name="movies">The movies parameters</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseSearchToMail'</returns>
- public static IMethodResponse SearchToMail(string[] languageIDS, SearchToMailMovieParameter[] movies)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- // Array of sub langs
- XmlRpcValueArray a = new XmlRpcValueArray(languageIDS);
- parms.Add(a);
- // Array of video parameters
- a = new XmlRpcValueArray();
- foreach (SearchToMailMovieParameter p in movies)
- {
- XmlRpcValueStruct str = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- str.Members.Add(new XmlRpcStructMember("moviehash", new XmlRpcValueBasic(p.moviehash)));
- str.Members.Add(new XmlRpcStructMember("moviesize", new XmlRpcValueBasic(p.moviesize)));
- a.Values.Add(str);
- }
- parms.Add(a);
- XmlRpcMethodCall call = new XmlRpcMethodCall("SearchToMail", parms);
- OSHConsole.WriteLine("Sending SearchToMail request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseSearchToMail R = new MethodResponseSearchToMail();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "SearchToMail call failed !");
- }
- /*Movies*/
- /// <summary>
- /// Search for a movie (using movie title)
- /// </summary>
- /// <param name="query">Movie title user is searching for, this is cleaned-up a bit (remove dvdrip, etc.) before searching </param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseSubtitleSearch'</returns>
- public static IMethodResponse SearchMoviesOnIMDB(string query)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- // Add token param
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- // Add query param
- parms.Add(new XmlRpcValueBasic(query, XmlRpcBasicValueType.String));
- // Call !
- XmlRpcMethodCall call = new XmlRpcMethodCall("SearchMoviesOnIMDB", parms);
- OSHConsole.WriteLine("Sending SearchMoviesOnIMDB request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseMovieSearch R = new MethodResponseMovieSearch();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- if (MEMBER.Name == "status")
- {
- R.Status = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine("Status= " + R.Status);
- }
- else if (MEMBER.Name == "seconds")
- {
- R.Seconds = (double)MEMBER.Data.Data;
- OSHConsole.WriteLine("Seconds= " + R.Seconds);
- }
- else if (MEMBER.Name == "data")
- {
- if (MEMBER.Data is XmlRpcValueArray)
- {
- OSHConsole.WriteLine("Search results:");
- XmlRpcValueArray rarray = (XmlRpcValueArray)MEMBER.Data;
- foreach (IXmlRpcValue subStruct in rarray.Values)
- {
- if (subStruct == null) continue;
- if (!(subStruct is XmlRpcValueStruct)) continue;
- MovieSearchResult result = new MovieSearchResult();
- foreach (XmlRpcStructMember submember in ((XmlRpcValueStruct)subStruct).Members)
- {
- // To avoid errors of arranged info or missing ones, let's do it with switch..
- switch (submember.Name)
- {
- case "id": result.ID = (string)submember.Data.Data; break;
- case "title": result.Title = (string)submember.Data.Data; break;
- }
- }
- R.Results.Add(result);
- OSHConsole.WriteLine(">" + result.ToString());
- }
- }
- else// Unknown data ?
- {
- OSHConsole.WriteLine("Data= " + MEMBER.Data.Data.ToString(), DebugCode.Warning);
- }
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "SearchMoviesOnIMDB call failed !");
- }
- /// <summary>
- /// Get movie details for given IMDb ID
- /// </summary>
- /// <param name="imdbid">http://www.imdb.com/</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseMovieDetails'</returns>
- public static IMethodResponse GetIMDBMovieDetails(string imdbid)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- // Add token param
- parms.Add(new XmlRpcValueBasic(TOKEN));
- // Add query param
- parms.Add(new XmlRpcValueBasic(imdbid));
- // Call !
- XmlRpcMethodCall call = new XmlRpcMethodCall("GetIMDBMovieDetails", parms);
- OSHConsole.WriteLine("Sending GetIMDBMovieDetails request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseMovieDetails R = new MethodResponseMovieDetails();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- if (MEMBER.Name == "status")
- {
- R.Status = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine("Status= " + R.Status);
- }
- else if (MEMBER.Name == "seconds")
- {
- R.Seconds = (double)MEMBER.Data.Data;
- OSHConsole.WriteLine("Seconds= " + R.Seconds);
- }
- else if (MEMBER.Name == "data")
- {
- // We expect struct with details...
- if (MEMBER.Data is XmlRpcValueStruct)
- {
- OSHConsole.WriteLine("Details result:");
- XmlRpcValueStruct detailsStruct = (XmlRpcValueStruct)MEMBER.Data;
- foreach (XmlRpcStructMember dmem in detailsStruct.Members)
- {
- switch (dmem.Name)
- {
- case "id": R.ID = dmem.Data.Data.ToString(); OSHConsole.WriteLine(">" + dmem.Name + "= " + dmem.Data.Data.ToString()); break;
- case "title": R.Title = dmem.Data.Data.ToString(); OSHConsole.WriteLine(">" + dmem.Name + "= " + dmem.Data.Data.ToString()); break;
- case "year": R.Year = dmem.Data.Data.ToString(); OSHConsole.WriteLine(">" + dmem.Name + "= " + dmem.Data.Data.ToString()); break;
- case "cover": R.CoverLink = dmem.Data.Data.ToString(); OSHConsole.WriteLine(">" + dmem.Name + "= " + dmem.Data.Data.ToString()); break;
- case "duration": R.Duration = dmem.Data.Data.ToString(); OSHConsole.WriteLine(">" + dmem.Name + "= " + dmem.Data.Data.ToString()); break;
- case "tagline": R.Tagline = dmem.Data.Data.ToString(); OSHConsole.WriteLine(">" + dmem.Name + "= " + dmem.Data.Data.ToString()); break;
- case "plot": R.Plot = dmem.Data.Data.ToString(); OSHConsole.WriteLine(">" + dmem.Name + "= " + dmem.Data.Data.ToString()); break;
- case "goofs": R.Goofs = dmem.Data.Data.ToString(); OSHConsole.WriteLine(">" + dmem.Name + "= " + dmem.Data.Data.ToString()); break;
- case "trivia": R.Trivia = dmem.Data.Data.ToString(); OSHConsole.WriteLine(">" + dmem.Name + "= " + dmem.Data.Data.ToString()); break;
- case "cast":
- // this is another struct with cast members...
- OSHConsole.WriteLine(">" + dmem.Name + "= ");
- XmlRpcValueStruct castStruct = (XmlRpcValueStruct)dmem.Data;
- foreach (XmlRpcStructMember castMemeber in castStruct.Members)
- {
- R.Cast.Add(castMemeber.Data.Data.ToString());
- OSHConsole.WriteLine(" >" + castMemeber.Data.Data.ToString());
- }
- break;
- case "directors":
- OSHConsole.WriteLine(">" + dmem.Name + "= ");
- // this is another struct with directors members...
- XmlRpcValueStruct directorsStruct = (XmlRpcValueStruct)dmem.Data;
- foreach (XmlRpcStructMember directorsMember in directorsStruct.Members)
- {
- R.Directors.Add(directorsMember.Data.Data.ToString());
- OSHConsole.WriteLine(" >" + directorsMember.Data.Data.ToString());
- }
- break;
- case "writers":
- OSHConsole.WriteLine(">" + dmem.Name + "= ");
- // this is another struct with writers members...
- XmlRpcValueStruct writersStruct = (XmlRpcValueStruct)dmem.Data;
- foreach (XmlRpcStructMember writersMember in writersStruct.Members)
- {
- R.Writers.Add(writersMember.Data.Data.ToString());
- OSHConsole.WriteLine("+->" + writersMember.Data.Data.ToString());
- }
- break;
- case "awards":
- // this is an array of genres...
- XmlRpcValueArray awardsArray = (XmlRpcValueArray)dmem.Data;
- foreach (XmlRpcValueBasic award in awardsArray.Values)
- {
- R.Awards.Add(award.Data.ToString());
- OSHConsole.WriteLine(" >" + award.Data.ToString());
- }
- break;
- case "genres":
- OSHConsole.WriteLine(">" + dmem.Name + "= ");
- // this is an array of genres...
- XmlRpcValueArray genresArray = (XmlRpcValueArray)dmem.Data;
- foreach (XmlRpcValueBasic genre in genresArray.Values)
- {
- R.Genres.Add(genre.Data.ToString());
- OSHConsole.WriteLine(" >" + genre.Data.ToString());
- }
- break;
- case "country":
- OSHConsole.WriteLine(">" + dmem.Name + "= ");
- // this is an array of country...
- XmlRpcValueArray countryArray = (XmlRpcValueArray)dmem.Data;
- foreach (XmlRpcValueBasic country in countryArray.Values)
- {
- R.Country.Add(country.Data.ToString());
- OSHConsole.WriteLine(" >" + country.Data.ToString());
- }
- break;
- case "language":
- OSHConsole.WriteLine(">" + dmem.Name + "= ");
- // this is an array of language...
- XmlRpcValueArray languageArray = (XmlRpcValueArray)dmem.Data;
- foreach (XmlRpcValueBasic language in languageArray.Values)
- {
- R.Language.Add(language.Data.ToString());
- OSHConsole.WriteLine(" >" + language.Data.ToString());
- }
- break;
- case "certification":
- OSHConsole.WriteLine(">" + dmem.Name + "= ");
- // this is an array of certification...
- XmlRpcValueArray certificationArray = (XmlRpcValueArray)dmem.Data;
- foreach (XmlRpcValueBasic certification in certificationArray.Values)
- {
- R.Certification.Add(certification.Data.ToString());
- OSHConsole.WriteLine(" >" + certification.Data.ToString());
- }
- break;
- }
- }
- }
- else// Unknown data ?
- {
- OSHConsole.WriteLine("Data= " + MEMBER.Data.Data.ToString(), DebugCode.Warning);
- }
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "GetIMDBMovieDetails call failed !");
- }
- /// <summary>
- /// Allows registered users to insert new movies (not stored in IMDb) to the database.
- /// </summary>
- /// <param name="movieName">Movie title </param>
- /// <param name="movieyear">Release year </param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseInsertMovie'</returns>
- public static IMethodResponse InsertMovie(string movieName, string movieyear)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- // Add token param
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- // Add movieinfo struct
- XmlRpcValueStruct movieinfo = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- movieinfo.Members.Add(new XmlRpcStructMember("moviename", new XmlRpcValueBasic(movieName)));
- movieinfo.Members.Add(new XmlRpcStructMember("movieyear", new XmlRpcValueBasic(movieyear)));
- parms.Add(movieinfo);
- // Call !
- XmlRpcMethodCall call = new XmlRpcMethodCall("InsertMovie", parms);
- OSHConsole.WriteLine("Sending InsertMovie request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseInsertMovie R = new MethodResponseInsertMovie();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- if (MEMBER.Name == "status")
- {
- R.Status = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine("Status= " + R.Status);
- }
- else if (MEMBER.Name == "seconds")
- {
- R.Seconds = (double)MEMBER.Data.Data;
- OSHConsole.WriteLine("Seconds= " + R.Seconds);
- }
- else if (MEMBER.Name == "id")
- {
- R.ID = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine("ID= " + R.Seconds);
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "InsertMovie call failed !");
- }
- /// <summary>
- /// Inserts or updates data to tables, which are used for CheckMovieHash() and !CheckMovieHash2().
- /// </summary>
- /// <param name="parameters">The parameters</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseInsertMovieHash'</returns>
- public static IMethodResponse InsertMovieHash(InsertMovieHashParameters[] parameters)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- foreach (InsertMovieHashParameters p in parameters)
- {
- XmlRpcValueStruct pstruct = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- pstruct.Members.Add(new XmlRpcStructMember("moviehash", new XmlRpcValueBasic(p.moviehash)));
- pstruct.Members.Add(new XmlRpcStructMember("moviebytesize", new XmlRpcValueBasic(p.moviebytesize)));
- pstruct.Members.Add(new XmlRpcStructMember("imdbid", new XmlRpcValueBasic(p.imdbid)));
- pstruct.Members.Add(new XmlRpcStructMember("movietimems", new XmlRpcValueBasic(p.movietimems)));
- pstruct.Members.Add(new XmlRpcStructMember("moviefps", new XmlRpcValueBasic(p.moviefps)));
- pstruct.Members.Add(new XmlRpcStructMember("moviefilename", new XmlRpcValueBasic(p.moviefilename)));
- parms.Add(pstruct);
- }
- XmlRpcMethodCall call = new XmlRpcMethodCall("InsertMovieHash", parms);
- OSHConsole.WriteLine("Sending InsertMovieHash request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseInsertMovieHash R = new MethodResponseInsertMovieHash();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status":
- R.Status = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "seconds":
- R.Seconds = (double)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "data":
- XmlRpcValueStruct dataStruct = (XmlRpcValueStruct)MEMBER.Data;
- foreach (XmlRpcStructMember dataMember in dataStruct.Members)
- {
- switch (dataMember.Name)
- {
- case "accepted_moviehashes":
- XmlRpcValueArray mh = (XmlRpcValueArray)dataMember.Data;
- foreach (IXmlRpcValue val in mh.Values)
- {
- if (val is XmlRpcValueBasic)
- {
- R.accepted_moviehashes.Add(val.Data.ToString());
- }
- }
- break;
- case "new_imdbs":
- XmlRpcValueArray mi = (XmlRpcValueArray)dataMember.Data;
- foreach (IXmlRpcValue val in mi.Values)
- {
- if (val is XmlRpcValueBasic)
- {
- R.new_imdbs.Add(val.Data.ToString());
- }
- }
- break;
- }
- }
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "InsertMovieHash call failed !");
- }
- /*Reporting and rating*/
- /// <summary>
- /// Get basic server information and statistics
- /// </summary>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseServerInfo'</returns>
- public static IMethodResponse ServerInfo()
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- parms.Add(new XmlRpcValueBasic(XML_PRC_USERAGENT, XmlRpcBasicValueType.String));
- XmlRpcMethodCall call = new XmlRpcMethodCall("ServerInfo", parms);
- OSHConsole.WriteLine("Sending ServerInfo request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseServerInfo R = new MethodResponseServerInfo();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status":
- R.Status = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "seconds":
- R.Seconds = (double)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "xmlrpc_version":
- R.xmlrpc_version = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "xmlrpc_url":
- R.xmlrpc_url = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "application":
- R.application = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "contact":
- R.contact = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "website_url":
- R.website_url = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "users_online_total":
- R.users_online_total = (int)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "users_online_program":
- R.users_online_program = (int)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "users_loggedin":
- R.users_loggedin = (int)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "users_max_alltime":
- R.users_max_alltime = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "users_registered":
- R.users_registered = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "subs_downloads":
- R.subs_downloads = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "subs_subtitle_files":
- R.subs_subtitle_files = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "movies_total":
- R.movies_total = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "movies_aka":
- R.movies_aka = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "total_subtitles_languages":
- R.total_subtitles_languages = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "last_update_strings":
- //R.total_subtitles_languages = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + ":");
- XmlRpcValueStruct luStruct = (XmlRpcValueStruct)MEMBER.Data;
- foreach (XmlRpcStructMember luMemeber in luStruct.Members)
- {
- R.last_update_strings.Add(luMemeber.Name + " [" + luMemeber.Data.Data.ToString() + "]");
- OSHConsole.WriteLine(" >" + luMemeber.Name + "= " + luMemeber.Data.Data.ToString());
- }
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "ServerInfo call failed !");
- }
- /// <summary>
- /// Report wrong subtitle file <--> video file combination
- /// </summary>
- /// <param name="IDSubMovieFile">Identifier of the subtitle file <--> video file combination </param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseReportWrongMovieHash'</returns>
- public static IMethodResponse ReportWrongMovieHash(string IDSubMovieFile)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- parms.Add(new XmlRpcValueBasic(IDSubMovieFile, XmlRpcBasicValueType.String));
- XmlRpcMethodCall call = new XmlRpcMethodCall("ReportWrongMovieHash", parms);
- OSHConsole.WriteLine("Sending ReportWrongMovieHash request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseReportWrongMovieHash R = new MethodResponseReportWrongMovieHash();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status":
- R.Status = (string)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- case "seconds":
- R.Seconds = (double)MEMBER.Data.Data;
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString());
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "ReportWrongMovieHash call failed !");
- }
- /// <summary>
- /// This method is needed to report bad movie hash for imdbid. This method should be used for correcting wrong entries,
- /// when using CheckMovieHash2. Pass moviehash and moviebytesize for file, and imdbid as new, corrected one IMDBID
- /// (id number without trailing zeroes). After some reports, moviehash will be linked to new imdbid.
- /// </summary>
- /// <param name="moviehash">The movie hash</param>
- /// <param name="moviebytesize">The movie size in bytes</param>
- /// <param name="imdbid">The movie imbid</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseReportWrongImdbMovie'</returns>
- public static IMethodResponse ReportWrongImdbMovie(string moviehash, string moviebytesize, string imdbid)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- XmlRpcValueStruct s = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- s.Members.Add(new XmlRpcStructMember("moviehash", new XmlRpcValueBasic(moviehash)));
- s.Members.Add(new XmlRpcStructMember("moviebytesize", new XmlRpcValueBasic(moviebytesize)));
- s.Members.Add(new XmlRpcStructMember("imdbid", new XmlRpcValueBasic(imdbid)));
- parms.Add(s);
- XmlRpcMethodCall call = new XmlRpcMethodCall("ReportWrongImdbMovie", parms);
- OSHConsole.WriteLine("Sending ReportWrongImdbMovie request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseAddComment R = new MethodResponseAddComment();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "ReportWrongImdbMovie call failed !");
- }
- /// <summary>
- /// Rate subtitles
- /// </summary>
- /// <param name="idsubtitle">Id of subtitle (NOT subtitle file) user wants to rate </param>
- /// <param name="score">Subtitle rating, must be in interval 1 (worst) to 10 (best). </param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseSubtitlesVote'</returns>
- public static IMethodResponse SubtitlesVote(int idsubtitle, int score)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- XmlRpcValueStruct s = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- s.Members.Add(new XmlRpcStructMember("idsubtitle", new XmlRpcValueBasic(idsubtitle)));
- s.Members.Add(new XmlRpcStructMember("score", new XmlRpcValueBasic(score)));
- parms.Add(s);
- XmlRpcMethodCall call = new XmlRpcMethodCall("SubtitlesVote", parms);
- OSHConsole.WriteLine("Sending SubtitlesVote request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseSubtitlesVote R = new MethodResponseSubtitlesVote();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "data":
- XmlRpcValueStruct dataStruct = (XmlRpcValueStruct)MEMBER.Data;
- foreach (XmlRpcStructMember dataMemeber in dataStruct.Members)
- {
- OSHConsole.WriteLine(" >" + dataMemeber.Name + "= " + dataMemeber.Data.Data.ToString());
- switch (dataMemeber.Name)
- {
- case "SubRating": R.SubRating = dataMemeber.Data.Data.ToString(); break;
- case "SubSumVotes": R.SubSumVotes = dataMemeber.Data.Data.ToString(); break;
- case "IDSubtitle": R.IDSubtitle = dataMemeber.Data.Data.ToString(); break;
- }
- }
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "SubtitlesVote call failed !");
- }
- /// <summary>
- /// Add comment to a subtitle
- /// </summary>
- /// <param name="idsubtitle">Subtitle identifier (BEWARE! this is not the ID of subtitle file but of the whole subtitle (a subtitle can contain multiple subtitle files))</param>
- /// <param name="comment">User's comment</param>
- /// <param name="badsubtitle">Optional parameter. If set to 1, subtitles are marked as bad.</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseAddComment'</returns>
- public static IMethodResponse AddComment(int idsubtitle, string comment, int badsubtitle)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- XmlRpcValueStruct s = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- s.Members.Add(new XmlRpcStructMember("idsubtitle", new XmlRpcValueBasic(idsubtitle)));
- s.Members.Add(new XmlRpcStructMember("comment", new XmlRpcValueBasic(comment)));
- s.Members.Add(new XmlRpcStructMember("badsubtitle", new XmlRpcValueBasic(badsubtitle)));
- parms.Add(s);
- XmlRpcMethodCall call = new XmlRpcMethodCall("AddComment", parms);
- OSHConsole.WriteLine("Sending AddComment request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseAddComment R = new MethodResponseAddComment();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "AddComment call failed !");
- }
- /// <summary>
- /// Add new request for subtitles, user must be logged in
- /// </summary>
- /// <param name="sublanguageid">The subtitle language id 3 length</param>
- /// <param name="idmovieimdb">http://www.imdb.com/</param>
- /// <param name="comment">The comment</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseAddRequest'</returns>
- public static IMethodResponse AddRequest(string sublanguageid, string idmovieimdb, string comment)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- XmlRpcValueStruct s = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- s.Members.Add(new XmlRpcStructMember("sublanguageid", new XmlRpcValueBasic(sublanguageid)));
- s.Members.Add(new XmlRpcStructMember("idmovieimdb", new XmlRpcValueBasic(idmovieimdb)));
- s.Members.Add(new XmlRpcStructMember("comment", new XmlRpcValueBasic(comment)));
- parms.Add(s);
- XmlRpcMethodCall call = new XmlRpcMethodCall("AddRequest", parms);
- OSHConsole.WriteLine("Sending AddRequest request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseAddRequest R = new MethodResponseAddRequest();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "data":
- XmlRpcValueStruct dataStruct = (XmlRpcValueStruct)MEMBER.Data;
- foreach (XmlRpcStructMember dataMemeber in dataStruct.Members)
- {
- switch (dataMemeber.Name)
- {
- case "request_url": R.request_url = dataMemeber.Data.Data.ToString(); OSHConsole.WriteLine(">" + dataMemeber.Name + "= " + dataMemeber.Data.Data.ToString()); break;
- }
- }
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "AddRequest call failed !");
- }
- /*User interface*/
- /// <summary>
- /// Get list of supported subtitle languages
- /// </summary>
- /// <param name="language">ISO639-1 2-letter language code of user's interface language. </param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseGetSubLanguages'</returns>
- public static IMethodResponse GetSubLanguages(string language)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN));
- parms.Add(new XmlRpcValueBasic(language));
- XmlRpcMethodCall call = new XmlRpcMethodCall("GetSubLanguages", parms);
- OSHConsole.WriteLine("Sending GetSubLanguages request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseGetSubLanguages R = new MethodResponseGetSubLanguages();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "data":// array of structs
- XmlRpcValueArray array = (XmlRpcValueArray)MEMBER.Data;
- foreach (IXmlRpcValue value in array.Values)
- {
- if (value is XmlRpcValueStruct)
- {
- XmlRpcValueStruct valueStruct = (XmlRpcValueStruct)value;
- SubtitleLanguage lang = new SubtitleLanguage();
- OSHConsole.WriteLine(">SubLanguage:");
- foreach (XmlRpcStructMember langMemeber in valueStruct.Members)
- {
- OSHConsole.WriteLine(" >" + langMemeber.Name + "= " + langMemeber.Data.Data.ToString());
- switch (langMemeber.Name)
- {
- case "SubLanguageID": lang.SubLanguageID = langMemeber.Data.Data.ToString(); break;
- case "LanguageName": lang.LanguageName = langMemeber.Data.Data.ToString(); break;
- case "ISO639": lang.ISO639 = langMemeber.Data.Data.ToString(); break;
- }
- }
- R.Languages.Add(lang);
- }
- else
- {
- OSHConsole.WriteLine(">" + MEMBER.Name + "= " +
- MEMBER.Data.Data.ToString() + " [Struct expected !]", DebugCode.Warning);
- }
- }
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "GetSubLanguages call failed !");
- }
- /// <summary>
- /// Detect language for given strings
- /// </summary>
- /// <param name="texts">Array of strings you want language detected for</param>
- /// <param name="encodingUsed">The encoding that will be used to get buffer of given strings. (this is not OS official parameter)</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseDetectLanguage'</returns>
- public static IMethodResponse DetectLanguage(string[] texts, Encoding encodingUsed)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- // We need to gzip texts then code them with base 24
- List<string> decodedTexts = new List<string>();
- foreach (string text in texts)
- {
- // compress
- Stream str = new MemoryStream();
- byte[] stringData = encodingUsed.GetBytes(text);
- str.Write(stringData, 0, stringData.Length);
- str.Position = 0;
- byte[] data = Utilities.Compress(str);
- //base 64
- decodedTexts.Add(Convert.ToBase64String(data));
- }
- parms.Add(new XmlRpcValueArray(decodedTexts.ToArray()));
- XmlRpcMethodCall call = new XmlRpcMethodCall("DetectLanguage", parms);
- OSHConsole.WriteLine("Sending DetectLanguage request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseDetectLanguage R = new MethodResponseDetectLanguage();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "data":
- if (MEMBER.Data is XmlRpcValueStruct)
- {
- OSHConsole.WriteLine(">Languages:");
- XmlRpcValueStruct dataStruct = (XmlRpcValueStruct)MEMBER.Data;
- foreach (XmlRpcStructMember dataMember in dataStruct.Members)
- {
- DetectLanguageResult lang = new DetectLanguageResult();
- lang.InputSample = dataMember.Name;
- lang.LanguageID = dataMember.Data.Data.ToString();
- R.Results.Add(lang);
- OSHConsole.WriteLine(" >" + dataMember.Name + " (" + dataMember.Data.Data.ToString() + ")");
- }
- }
- else
- {
- OSHConsole.WriteLine(">Languages ?? Struct expected but server return another type!!", DebugCode.Warning);
- }
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "DetectLanguage call failed !");
- }
- /// <summary>
- /// Get available translations for given program
- /// </summary>
- /// <param name="program">Name of the program/client application you want translations for. Currently supported values: subdownloader, oscar</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseGetAvailableTranslations'</returns>
- public static IMethodResponse GetAvailableTranslations(string program)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN));
- parms.Add(new XmlRpcValueBasic(program));
- XmlRpcMethodCall call = new XmlRpcMethodCall("GetAvailableTranslations", parms);
- OSHConsole.WriteLine("Sending GetAvailableTranslations request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseGetAvailableTranslations R = new MethodResponseGetAvailableTranslations();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "data":
- XmlRpcValueStruct dataStruct = (XmlRpcValueStruct)MEMBER.Data;
- OSHConsole.WriteLine(">data:");
- foreach (XmlRpcStructMember dataMember in dataStruct.Members)
- {
- if (dataMember.Data is XmlRpcValueStruct)
- {
- XmlRpcValueStruct resStruct = (XmlRpcValueStruct)dataMember.Data;
- GetAvailableTranslationsResult res = new GetAvailableTranslationsResult();
- res.LanguageID = dataMember.Name;
- OSHConsole.WriteLine(" >LanguageID: " + dataMember.Name);
- foreach (XmlRpcStructMember resMember in resStruct.Members)
- {
- switch (resMember.Name)
- {
- case "LastCreated": res.LastCreated = resMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + resMember.Name + "= " + resMember.Data.Data.ToString()); break;
- case "StringsNo": res.StringsNo = resMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + resMember.Name + "= " + resMember.Data.Data.ToString()); break;
- }
- R.Results.Add(res);
- }
- }
- else
- {
- OSHConsole.WriteLine(" >Struct expected !!", DebugCode.Warning);
- }
- }
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "GetAvailableTranslations call failed !");
- }
- /// <summary>
- /// Get a translation for given program and language
- /// </summary>
- /// <param name="iso639">language ISO639-1 2-letter code </param>
- /// <param name="format">available formats: [gnugettext compatible: mo, po] and [additional: txt, xml]</param>
- /// <param name="program">Name of the program/client application you want translations for. (currently supported values: subdownloader, oscar)</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseGetTranslation'</returns>
- public static IMethodResponse GetTranslation(string iso639, string format, string program)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN));
- parms.Add(new XmlRpcValueBasic(iso639));
- parms.Add(new XmlRpcValueBasic(format));
- parms.Add(new XmlRpcValueBasic(program));
- XmlRpcMethodCall call = new XmlRpcMethodCall("GetTranslation", parms);
- OSHConsole.WriteLine("Sending GetTranslation request to the server ...", DebugCode.Good);
- // Send the request to the server
- //File.WriteAllText(".\\REQUEST_GetTranslation.xml", Encoding.ASCII.GetString(XmlRpcGenerator.Generate(call)));
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseGetTranslation R = new MethodResponseGetTranslation();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "data": R.ContentData = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "GetTranslation call failed !");
- }
- /// <summary>
- /// Check for the latest version of given application
- /// </summary>
- /// <param name="program">name of the program/client application you want to check. (Currently supported values: subdownloader, oscar)</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseAutoUpdate'</returns>
- public static IMethodResponse AutoUpdate(string program)
- {
- /*if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }*/
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- // parms.Add(new XmlRpcValueBasic(TOKEN));
- parms.Add(new XmlRpcValueBasic(program));
- // parms.Add(new XmlRpcValueBasic(XML_PRC_USERAGENT));
- XmlRpcMethodCall call = new XmlRpcMethodCall("AutoUpdate", parms);
- OSHConsole.WriteLine("Sending AutoUpdate request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseAutoUpdate R = new MethodResponseAutoUpdate();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "version": R.version = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "url_windows": R.url_windows = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "url_linux": R.url_linux = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "comments": R.comments = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "AutoUpdate call failed !");
- }
- /*Checking*/
- /// <summary>
- /// Check if video file hashes are already stored in the database
- /// </summary>
- /// <param name="hashes">Array of video file hashes</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseCheckMovieHash'</returns>
- public static IMethodResponse CheckMovieHash(string[] hashes)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN));
- parms.Add(new XmlRpcValueArray(hashes));
- XmlRpcMethodCall call = new XmlRpcMethodCall("CheckMovieHash", parms);
- OSHConsole.WriteLine("Sending CheckMovieHash request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseCheckMovieHash R = new MethodResponseCheckMovieHash();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "data":
- XmlRpcValueStruct dataStruct = (XmlRpcValueStruct)MEMBER.Data;
- OSHConsole.WriteLine(">Data:");
- foreach (XmlRpcStructMember dataMember in dataStruct.Members)
- {
- CheckMovieHashResult res = new CheckMovieHashResult();
- res.Name = dataMember.Name;
- OSHConsole.WriteLine(" >" + res.Name + ":");
- XmlRpcValueStruct movieStruct = (XmlRpcValueStruct)dataMember.Data;
- foreach (XmlRpcStructMember movieMember in movieStruct.Members)
- {
- switch (movieMember.Name)
- {
- case "MovieHash": res.MovieHash = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- case "MovieImdbID": res.MovieImdbID = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- case "MovieName": res.MovieName = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- case "MovieYear": res.MovieYear = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- }
- }
- R.Results.Add(res);
- }
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "CheckMovieHash call failed !");
- }
- /// <summary>
- /// Check if video file hashes are already stored in the database. This method returns matching !MovieImdbID, MovieName, MovieYear, SeriesSeason, SeriesEpisode,
- /// MovieKind if available for each $moviehash, always sorted by SeenCount DESC.
- /// </summary>
- /// <param name="hashes">Array of video file hashes</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseCheckMovieHash2'</returns>
- public static IMethodResponse CheckMovieHash2(string[] hashes)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN));
- parms.Add(new XmlRpcValueArray(hashes));
- XmlRpcMethodCall call = new XmlRpcMethodCall("CheckMovieHash2", parms);
- OSHConsole.WriteLine("Sending CheckMovieHash2 request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseCheckMovieHash2 R = new MethodResponseCheckMovieHash2();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "data":
- XmlRpcValueStruct dataStruct = (XmlRpcValueStruct)MEMBER.Data;
- OSHConsole.WriteLine(">Data:");
- foreach (XmlRpcStructMember dataMember in dataStruct.Members)
- {
- CheckMovieHash2Result res = new CheckMovieHash2Result();
- res.Name = dataMember.Name;
- OSHConsole.WriteLine(" >" + res.Name + ":");
- XmlRpcValueArray dataArray = (XmlRpcValueArray)dataMember.Data;
- foreach (XmlRpcValueStruct movieStruct in dataArray.Values)
- {
- CheckMovieHash2Data d = new CheckMovieHash2Data();
- foreach (XmlRpcStructMember movieMember in movieStruct.Members)
- {
- switch (movieMember.Name)
- {
- case "MovieHash": d.MovieHash = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- case "MovieImdbID": d.MovieImdbID = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- case "MovieName": d.MovieName = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- case "MovieYear": d.MovieYear = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- case "MovieKind": d.MovieKind = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- case "SeriesSeason": d.SeriesSeason = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- case "SeriesEpisode": d.SeriesEpisode = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- case "SeenCount": d.MovieYear = movieMember.Data.Data.ToString(); OSHConsole.WriteLine(" >" + movieMember.Name + "= " + movieMember.Data.Data.ToString()); break;
- }
- }
- res.Items.Add(d);
- }
- R.Results.Add(res);
- }
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "CheckMovieHash2 call failed !");
- }
- /// <summary>
- /// Check if given subtitle files are already stored in the database
- /// </summary>
- /// <param name="hashes">Array of subtitle file hashes (MD5 hashes of subtitle file contents) </param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseCheckSubHash'</returns>
- public static IMethodResponse CheckSubHash(string[] hashes)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN));
- parms.Add(new XmlRpcValueArray(hashes));
- XmlRpcMethodCall call = new XmlRpcMethodCall("CheckSubHash", parms);
- OSHConsole.WriteLine("Sending CheckSubHash request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseCheckSubHash R = new MethodResponseCheckSubHash();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "data":
- OSHConsole.WriteLine(">Data:");
- XmlRpcValueStruct dataStruct = (XmlRpcValueStruct)MEMBER.Data;
- foreach (XmlRpcStructMember dataMember in dataStruct.Members)
- {
- OSHConsole.WriteLine(" >" + dataMember.Name + "= " + dataMember.Data.Data.ToString());
- CheckSubHashResult r = new CheckSubHashResult();
- r.Hash = dataMember.Name;
- r.SubID = dataMember.Data.Data.ToString();
- R.Results.Add(r);
- }
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "CheckSubHash call failed !");
- }
- /*Upload*/
- /// <summary>
- /// Try to upload subtitles, perform pre-upload checking (i.e. check if subtitles already exist on server)
- /// </summary>
- /// <param name="subs">The subtitle parameters collection to try to upload</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseTryUploadSubtitles'</returns>
- public static IMethodResponse TryUploadSubtitles(TryUploadSubtitlesParameters[] subs)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN, XmlRpcBasicValueType.String));
- XmlRpcValueStruct s = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- int i = 1;
- foreach (TryUploadSubtitlesParameters cd in subs)
- {
- XmlRpcStructMember member = new XmlRpcStructMember("cd" + i, null);
- XmlRpcValueStruct memberStruct = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- memberStruct.Members.Add(new XmlRpcStructMember("subhash", new XmlRpcValueBasic(cd.subhash)));
- memberStruct.Members.Add(new XmlRpcStructMember("subfilename", new XmlRpcValueBasic(cd.subfilename)));
- memberStruct.Members.Add(new XmlRpcStructMember("moviehash", new XmlRpcValueBasic(cd.moviehash)));
- memberStruct.Members.Add(new XmlRpcStructMember("moviebytesize", new XmlRpcValueBasic(cd.moviebytesize)));
- memberStruct.Members.Add(new XmlRpcStructMember("moviefps", new XmlRpcValueBasic(cd.moviefps)));
- memberStruct.Members.Add(new XmlRpcStructMember("movietimems", new XmlRpcValueBasic(cd.movietimems)));
- memberStruct.Members.Add(new XmlRpcStructMember("movieframes", new XmlRpcValueBasic(cd.movieframes)));
- memberStruct.Members.Add(new XmlRpcStructMember("moviefilename", new XmlRpcValueBasic(cd.moviefilename)));
- member.Data = memberStruct;
- s.Members.Add(member);
- i++;
- }
- parms.Add(s);
- XmlRpcMethodCall call = new XmlRpcMethodCall("TryUploadSubtitles", parms);
- OSHConsole.WriteLine("Sending TryUploadSubtitles request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseTryUploadSubtitles R = new MethodResponseTryUploadSubtitles();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "alreadyindb": R.AlreadyInDB = (int)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "data":
- if (MEMBER.Data is XmlRpcValueArray)
- {
- OSHConsole.WriteLine("Results: ");
- XmlRpcValueArray rarray = (XmlRpcValueArray)MEMBER.Data;
- foreach (IXmlRpcValue subStruct in rarray.Values)
- {
- if (subStruct == null) continue;
- if (!(subStruct is XmlRpcValueStruct)) continue;
- SubtitleSearchResult result = new SubtitleSearchResult();
- foreach (XmlRpcStructMember submember in ((XmlRpcValueStruct)subStruct).Members)
- {
- // To avoid errors of arranged info or missing ones, let's do it with switch..
- switch (submember.Name)
- {
- case "IDMovie": result.IDMovie = submember.Data.Data.ToString(); break;
- case "IDMovieImdb": result.IDMovieImdb = submember.Data.Data.ToString(); break;
- case "IDSubMovieFile": result.IDSubMovieFile = submember.Data.Data.ToString(); break;
- case "IDSubtitle": result.IDSubtitle = submember.Data.Data.ToString(); break;
- case "IDSubtitleFile": result.IDSubtitleFile = submember.Data.Data.ToString(); break;
- case "ISO639": result.ISO639 = submember.Data.Data.ToString(); break;
- case "LanguageName": result.LanguageName = submember.Data.Data.ToString(); break;
- case "MovieByteSize": result.MovieByteSize = submember.Data.Data.ToString(); break;
- case "MovieHash": result.MovieHash = submember.Data.Data.ToString(); break;
- case "MovieImdbRating": result.MovieImdbRating = submember.Data.Data.ToString(); break;
- case "MovieName": result.MovieName = submember.Data.Data.ToString(); break;
- case "MovieNameEng": result.MovieNameEng = submember.Data.Data.ToString(); break;
- case "MovieReleaseName": result.MovieReleaseName = submember.Data.Data.ToString(); break;
- case "MovieTimeMS": result.MovieTimeMS = submember.Data.Data.ToString(); break;
- case "MovieYear": result.MovieYear = submember.Data.Data.ToString(); break;
- case "SubActualCD": result.SubActualCD = submember.Data.Data.ToString(); break;
- case "SubAddDate": result.SubAddDate = submember.Data.Data.ToString(); break;
- case "SubAuthorComment": result.SubAuthorComment = submember.Data.Data.ToString(); break;
- case "SubBad": result.SubBad = submember.Data.Data.ToString(); break;
- case "SubDownloadLink": result.SubDownloadLink = submember.Data.Data.ToString(); break;
- case "SubDownloadsCnt": result.SubDownloadsCnt = submember.Data.Data.ToString(); break;
- case "SubFileName": result.SubFileName = submember.Data.Data.ToString(); break;
- case "SubFormat": result.SubFormat = submember.Data.Data.ToString(); break;
- case "SubHash": result.SubHash = submember.Data.Data.ToString(); break;
- case "SubLanguageID": result.SubLanguageID = submember.Data.Data.ToString(); break;
- case "SubRating": result.SubRating = submember.Data.Data.ToString(); break;
- case "SubSize": result.SubSize = submember.Data.Data.ToString(); break;
- case "SubSumCD": result.SubSumCD = submember.Data.Data.ToString(); break;
- case "UserID": result.UserID = submember.Data.Data.ToString(); break;
- case "UserNickName": result.UserNickName = submember.Data.Data.ToString(); break;
- case "ZipDownloadLink": result.ZipDownloadLink = submember.Data.Data.ToString(); break;
- }
- }
- R.Results.Add(result);
- OSHConsole.WriteLine(">" + result.ToString());
- }
- }
- else// Unknown data ?
- {
- OSHConsole.WriteLine("Data= " + MEMBER.Data.Data.ToString(), DebugCode.Warning);
- }
- break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "TryUploadSubtitles call failed !");
- }
- /// <summary>
- /// Upload given subtitles to OSDb server
- /// </summary>
- /// <param name="info">The pamaters of upload method</param>
- /// <returns>Status of the call operation. If the call success the response will be 'MethodResponseUploadSubtitles'</returns>
- public static IMethodResponse UploadSubtitles(UploadSubtitleInfoParameters info)
- {
- if (TOKEN == "")
- {
- OSHConsole.WriteLine("Can't do this call, 'token' value not set. Please use Log In method first.", DebugCode.Error);
- return new MethodResponseError("Fail", "Can't do this call, 'token' value not set. Please use Log In method first.");
- }
- // Method call ..
- List<IXmlRpcValue> parms = new List<IXmlRpcValue>();
- parms.Add(new XmlRpcValueBasic(TOKEN));
- // Main struct
- XmlRpcValueStruct s = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- // Base info member as struct
- XmlRpcStructMember member = new XmlRpcStructMember("baseinfo", null);
- XmlRpcValueStruct memberStruct = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- memberStruct.Members.Add(new XmlRpcStructMember("idmovieimdb", new XmlRpcValueBasic(info.idmovieimdb)));
- memberStruct.Members.Add(new XmlRpcStructMember("sublanguageid", new XmlRpcValueBasic(info.sublanguageid)));
- memberStruct.Members.Add(new XmlRpcStructMember("moviereleasename", new XmlRpcValueBasic(info.moviereleasename)));
- memberStruct.Members.Add(new XmlRpcStructMember("movieaka", new XmlRpcValueBasic(info.movieaka)));
- memberStruct.Members.Add(new XmlRpcStructMember("subauthorcomment", new XmlRpcValueBasic(info.subauthorcomment)));
- // memberStruct.Members.Add(new XmlRpcStructMember("hearingimpaired", new XmlRpcValueBasic(info.hearingimpaired)));
- // memberStruct.Members.Add(new XmlRpcStructMember("highdefinition", new XmlRpcValueBasic(info.highdefinition)));
- // memberStruct.Members.Add(new XmlRpcStructMember("automatictranslation", new XmlRpcValueBasic(info.automatictranslation)));
- member.Data = memberStruct;
- s.Members.Add(member);
- // CDS members
- int i = 1;
- foreach (UploadSubtitleParameters cd in info.CDS)
- {
- XmlRpcStructMember member2 = new XmlRpcStructMember("cd" + i, null);
- XmlRpcValueStruct memberStruct2 = new XmlRpcValueStruct(new List<XmlRpcStructMember>());
- memberStruct2.Members.Add(new XmlRpcStructMember("subhash", new XmlRpcValueBasic(cd.subhash)));
- memberStruct2.Members.Add(new XmlRpcStructMember("subfilename", new XmlRpcValueBasic(cd.subfilename)));
- memberStruct2.Members.Add(new XmlRpcStructMember("moviehash", new XmlRpcValueBasic(cd.moviehash)));
- memberStruct2.Members.Add(new XmlRpcStructMember("moviebytesize", new XmlRpcValueBasic(cd.moviebytesize)));
- memberStruct2.Members.Add(new XmlRpcStructMember("moviefps", new XmlRpcValueBasic(cd.moviefps)));
- memberStruct2.Members.Add(new XmlRpcStructMember("movietimems", new XmlRpcValueBasic(cd.movietimems)));
- memberStruct2.Members.Add(new XmlRpcStructMember("movieframes", new XmlRpcValueBasic(cd.movieframes)));
- memberStruct2.Members.Add(new XmlRpcStructMember("moviefilename", new XmlRpcValueBasic(cd.moviefilename)));
- memberStruct2.Members.Add(new XmlRpcStructMember("subcontent", new XmlRpcValueBasic(cd.subcontent)));
- member2.Data = memberStruct2;
- s.Members.Add(member2);
- i++;
- }
- // add main struct to parameters
- parms.Add(s);
- // add user agent
- //parms.Add(new XmlRpcValueBasic(XML_PRC_USERAGENT));
- XmlRpcMethodCall call = new XmlRpcMethodCall("UploadSubtitles", parms);
- OSHConsole.WriteLine("Sending UploadSubtitles request to the server ...", DebugCode.Good);
- // Send the request to the server
- string response = Utilities.GetStreamString(Utilities.SendRequest(XmlRpcGenerator.Generate(call), XML_PRC_USERAGENT));
- if (!response.Contains("ERROR:"))
- {
- // No error occur, get and decode the response.
- XmlRpcMethodCall[] calls = XmlRpcGenerator.DecodeMethodResponse(response);
- if (calls.Length > 0)
- {
- if (calls[0].Parameters.Count > 0)
- {
- XmlRpcValueStruct mainStruct = (XmlRpcValueStruct)calls[0].Parameters[0];
- // Create the response, we'll need it later
- MethodResponseUploadSubtitles R = new MethodResponseUploadSubtitles();
- // To make sure response is not currepted by server, do it in loop
- foreach (XmlRpcStructMember MEMBER in mainStruct.Members)
- {
- switch (MEMBER.Name)
- {
- case "status": R.Status = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "seconds": R.Seconds = (double)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "data": R.Data = (string)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- case "subtitles": R.SubTitles = (bool)MEMBER.Data.Data; OSHConsole.WriteLine(">" + MEMBER.Name + "= " + MEMBER.Data.Data.ToString()); break;
- }
- }
- // Return the response to user !!
- return R;
- }
- }
- }
- else
- {
- OSHConsole.WriteLine(response, DebugCode.Error);
- return new MethodResponseError("Fail", response);
- }
- return new MethodResponseError("Fail", "UploadSubtitles call failed !");
- }
- }
- }
|