Exemplo n.º 1
0
        public static SubtitleServerSession Create(SubtitleServerType serverType, string serverUrl, string userName, string password, CultureInfo culture = null)
        {
            SubtitleServerSession session = null;

            try
            {
                switch (serverType)
                {
                case SubtitleServerType.BSP_V1:
                    session = new BspV1Session(serverUrl, userName, password, culture);
                    break;

                case SubtitleServerType.NuSoap:
                    session = new NuSoapSession(serverUrl, userName, password, culture);
                    break;

                case SubtitleServerType.Osdb:
                default:
                    session = new OsdbSession(serverUrl, userName, password, culture);
                    break;
                }
            }
            catch (Exception ex)
            {
                Logger.LogException(ex);
            }

            return(session);
        }
Exemplo n.º 2
0
 public void Dispose()
 {
     if (_session != null)
     {
         _session.Dispose();
         _session = null;
     }
 }
Exemplo n.º 3
0
        public List<SubtitleInfo> GetSubtitles(string fileName)
        {
            try
            {
                NativeFileInfo nfi = new NativeFileInfo(fileName, true);
                if (nfi.IsValid)
                {
                    if (_session == null)
                    {
                        _session = SubtitleServerSession.Create(_serverType, _serverUrl, _userName, _password);
                    }

                    if (_session != null)
                    {
                        return _session.GetSubtitles(fileName);
                    }
                }
            }
            catch (Exception ex)
            {
                Logger.LogException(ex);
            }

            return null;
        }
Exemplo n.º 4
0
        public string DownloadCompressedSubtitle(string fileName, SubtitleInfo subtitle)
        {
            try
            {
                if (_session == null)
                {
                    _session = SubtitleServerSession.Create(_serverType, _serverUrl, _userName, _password);
                }

                if (_session != null)
                {
                    return _session.DownloadSubtitle(fileName, subtitle);
                }
            }
            catch (Exception ex)
            {
                Logger.LogException(ex);
            }

            return string.Empty;
        }