Example #1
0
        private async Task sort(LibrarySort sort)
        {
            Edit = false;
            switch (sort)
            {
            case LibrarySort.Alphabetical:
                if (CloudItems != null)
                {
                    await CloudItems.SortByTitle();
                }

                if (LocalItems != null)
                {
                    await LocalItems.SortByTitle();
                }
                break;

            case LibrarySort.Recent:
                if (CloudItems != null)
                {
                    await CloudItems.SortByDate();
                }

                if (LocalItems != null)
                {
                    await LocalItems.SortByDate();
                }
                break;
            }
        }
Example #2
0
        private async Task updateLocalItems()
        {
            if (LocalItems != null)
            {
                var localPaths = LocalItems.ToList().Select(l => l.LocalFilePath).ToList();
                var newItems   = LocalLibraryService.Instance.GetNewMediaItems(localPaths);
                await LocalItems.AddItems(newItems);

                var removed = LocalLibraryService.Instance.GetDeletedMediaItems(localPaths);
                if (removed != null && removed.Any())
                {
                    var removedItems = LocalItems.ToList().Where(l => removed.Contains(l.LocalFilePath));
                    if (removedItems != null && removedItems.Any())
                    {
                        await LocalItems.RemoveItems(removedItems);
                    }
                }

                OnPropertyChanged(nameof(LocalItemsCount));
            }
            else
            {
                await getLocalItems();
            }
        }
Example #3
0
        private async Task getLocalItems()
        {
            var localLibraryItems = LocalLibraryService.Instance.GetMediaItems();

            if (LocalItems == null)
            {
                LocalItems = new ObservableCollection <LibraryItem>();
            }

            if (localLibraryItems != null)
            {
                var locals = new ObservableCollection <LibraryItem>(localLibraryItems);
                switch (librarySort)
                {
                case LibrarySort.Alphabetical:
                    await locals.SortByTitle();

                    break;

                case LibrarySort.Recent:
                    await locals.SortByDate();

                    break;
                }

                await LocalItems.UpdateItems(locals);
            }

            OnPropertyChanged(nameof(LocalItemsCount));
        }
Example #4
0
        /// <summary>
        ///     Init Local with the System drives
        /// </summary>
        public void InitLocal()
        {
            LocalPath = null;
            LocalItems.Clear();
            var drives = DriveInfo.GetDrives();

            foreach (var drive in drives)
            {
                LocalItems.Add(new ProtocolItem(drive.Name, drive.Name, 0, DateTime.Today, FolderType.Instance));
            }
        }
Example #5
0
        /// <summary>
        ///     Method for get all files and folders in a folder
        /// </summary>
        /// <param name="destination"></param>
        /// <param name="path"></param>
        public void GetLocalFilesAndFolders(ObservableCollection <ProtocolItem> destination, string path)
        {
            destination.Clear();
            var directories = Directory.GetDirectories(path);

            foreach (var entry in directories)
            {
                var di = new DirectoryInfo(entry);
                LocalItems.Add(new ProtocolItem(Path.GetFileName(entry), entry, 0, di.LastWriteTime, FolderType.Instance));
            }
            var files = Directory.GetFiles(path);

            foreach (var file in files)
            {
                var fi = new FileInfo(file);
                LocalItems.Add(new ProtocolItem(Path.GetFileName(file), file, fi.Length, fi.LastWriteTime,
                                                FileType.Instance));
            }
        }
Example #6
0
        private async void ItemDownloaderOnDownloadComplete(object sender,
                                                            AsyncCompletedEventArgs asyncCompletedEventArgs)
        {
            var id  = ((DownloadProgress)asyncCompletedEventArgs.UserState).Id;
            var url = ((DownloadProgress)asyncCompletedEventArgs.UserState).Url;
            var willRetryOnError = ((DownloadProgress)asyncCompletedEventArgs.UserState).WillRetryOnError;
            var localFilePath    = ((DownloadProgress)asyncCompletedEventArgs.UserState).LocalFilePath;
            var title            = ((DownloadProgress)asyncCompletedEventArgs.UserState).Title;
            var isCustomError    = ((DownloadProgress)asyncCompletedEventArgs.UserState).IsCustomError;

            if (!asyncCompletedEventArgs.Cancelled && asyncCompletedEventArgs.Error != null && willRetryOnError)
            {
                return;
            }

            LibraryItem itemBeingDownloaded = null;

            if (CloudItems != null)
            {
                itemBeingDownloaded = CloudItems.FirstOrDefault(item => item.ID == id || item.DownloadUrl == url);
            }

            if (itemBeingDownloaded != null)
            {
                if (asyncCompletedEventArgs.Cancelled)
                {
                    itemBeingDownloaded.DownloadStatus = DownloadStatus.Canceled;
                }
                else if (asyncCompletedEventArgs.Error != null)
                {
                    itemBeingDownloaded.DownloadStatus = DownloadStatus.Failed;
                }
                else
                {
                    itemBeingDownloaded.DownloadStatus = DownloadStatus.Completed;
                }

                itemBeingDownloaded.DownloadProgress = null;
            }

            if (!asyncCompletedEventArgs.Cancelled)
            {
                if (asyncCompletedEventArgs.Error != null)
                {
                    var message = "There was a problem downloading your recording of \"" + title +
                                  "\". Please try again!";
                    if (isCustomError)
                    {
                        message = asyncCompletedEventArgs.Error.Message;
                    }

                    await RemoteNotificationsService.Instance.TriggerLocalNotification(new AppNotificationMessage
                    {
                        ID   = id,
                        Text = message,
                        Type = AppNotificationType.DownloadFailed
                    });
                }
                else
                {
                    await RemoteNotificationsService.Instance.TriggerLocalNotification(new AppNotificationMessage
                    {
                        ID   = id,
                        Text = "Your recording of \"" + title + "\" was downloaded successfully!",
                        Type = AppNotificationType.DownloadComplete
                    });

                    var downloadedItem = new LibraryItem
                    {
                        ID            = id,
                        Storage       = LibraryItemStorage.AppLocal,
                        LocalFilePath = localFilePath
                    };

                    if (LocalLibraryService.Instance.CreateMediaItem(downloadedItem, true))
                    {
                        if (itemBeingDownloaded != null)
                        {
                            itemBeingDownloaded.LocalItem = downloadedItem;
                        }

                        if (LocalItems != null)
                        {
                            var itemsToDelete =
                                LocalItems.Where(
                                    item =>
                                    item.LocalFilePath == downloadedItem.LocalFilePath &&
                                    item.Storage == downloadedItem.Storage).ToArray();
                            foreach (var itemToDelete in itemsToDelete)
                            {
                                LocalItems.Remove(itemToDelete);
                            }

                            LocalItems.Add(downloadedItem);
                            await sort(librarySort);

                            OnPropertyChanged(nameof(LocalItemsCount));
                        }
                    }
                    else
                    {
                        LoggerService.Instance.Log(
                            "Library.ItemDownloaderOnDownloadComplete: Unable to create media item");
                    }
                }
            }

            if (itemBeingDownloaded != null)
            {
                try
                {
                    SuspendOnSelectedItemDetailsChangedEvent = true;
                    Download.ChangeCanExecute();
                    CancelDownload.ChangeCanExecute();
                    Delete.ChangeCanExecute();
                    Play.ChangeCanExecute();
                    SuspendOnSelectedItemDetailsChangedEvent = false;
                }
                catch
                {
                }
            }
        }
Example #7
0
        private async Task <bool> delete(LibraryItem item)
        {
            if (item == null || item.Storage == LibraryItemStorage.iTunes)
            {
                return(false);
            }

            LoggerService.Instance.Log("INFO: Library.delete: ID: " + item.ID);
            if (item.IsLocal)
            {
                if (item.Storage == LibraryItemStorage.AppLocal)
                {
                    var deleted = LocalLibraryService.Instance.DeleteMediaItem(item, true);
                    if (deleted)
                    {
                        if (CloudItems != null)
                        {
                            var deletedItem = CloudItems.FirstOrDefault(cloudItem => item.ID == cloudItem.ID);
                            if (deletedItem != null)
                            {
                                deletedItem.DownloadStatus = DownloadStatus.Unknown;
                                deletedItem.LocalItem      = null;
                            }
                        }

                        if (LocalItems != null)
                        {
                            LocalItems.Remove(item);
                            OnPropertyChanged(nameof(LocalItemsCount));
                        }

                        if (item.Equals(SelectedItem))
                        {
                            SelectedItem = null;
                        }

                        if (item.Equals(SelectedLibraryItem))
                        {
                            SelectedLibraryItem = null;
                        }

                        return(true);
                    }
                }
            }
            else
            {
                var response = await LibraryClient.Delete(item.ID);

                if (response != null && response.Success)
                {
                    if (Account != null && Account.SignedIn && Account.UserInfo != null &&
                        !string.IsNullOrEmpty(Account.UserInfo.Email))
                    {
                        LocalLibraryService.Instance.DeleteCloudItemId(item.ID, Account.UserInfo.Email);
                    }

                    CloudItems.Remove(item);
                    OnPropertyChanged(nameof(CloudItemsCount));

                    if (item.Equals(SelectedItem))
                    {
                        SelectedItem = null;
                    }

                    if (item.Equals(SelectedCloudItem))
                    {
                        SelectedCloudItem = null;
                    }

                    return(true);
                }
            }

            return(false);
        }
Example #8
0
        private async Task getItems(bool cloudItemsOnly = false)
        {
            if (!cloudItemsOnly)
            {
                await getLocalItems();
            }
            else
            {
                await updateLocalItems();
            }

            var collection = await LibraryClient.Get();

            if (collection?.Entries != null)
            {
                if (CloudItems == null)
                {
                    CloudItems = new ObservableCollection <LibraryItem>();
                }

                var entries = new ObservableCollection <LibraryItem>(collection.Entries);
                switch (librarySort)
                {
                case LibrarySort.Alphabetical:
                    await entries.SortByTitle();

                    break;

                case LibrarySort.Recent:
                    await entries.SortByDate();

                    break;
                }

                var newItems = await CloudItems.UpdateItems(entries);

                if (Account != null && Account.SignedIn && Account.UserInfo != null &&
                    !string.IsNullOrEmpty(Account.UserInfo.Email))
                {
                    var cloud = CloudItems.ToList();
                    var email = Account.UserInfo.Email.ToLower();
                    if (!SharedSettingsService.Instance.GetBoolValue("AutoDownloadDBCreated" + email))
                    {
                        SharedSettingsService.Instance.SetBoolValue("AutoDownloadDBCreated" + email, true);
                        foreach (var cloudItem in cloud)
                        {
                            LocalLibraryService.Instance.CreateCloudItemId(cloudItem.ID, Account.UserInfo.Email);
                        }
                    }
                    else
                    {
                        foreach (var cloudItem in newItems)
                        {
                            if (
                                !LocalLibraryService.Instance.IsItemAddedForDownload(cloudItem.ID,
                                                                                     Account.UserInfo.Email))
                            {
                                LocalLibraryService.Instance.CreateCloudItemId(cloudItem.ID, Account.UserInfo.Email);
                                if (AutoDownload)
                                {
                                    LoggerService.Instance.Log("Library.getItems: Found new item for download: ID: " +
                                                               cloudItem.ID);
                                    await DownloadItem(cloudItem, false);
                                }
                            }
                        }
                    }
                }
            }

            if (LocalItems != null && CloudItems != null)
            {
                var local = LocalItems.ToList();
                var cloud = CloudItems.ToList();
                foreach (var localItem in local)
                {
                    var cloudItemForLocalItem =
                        cloud.FirstOrDefault(
                            item => item.ID == localItem.ID && localItem.Storage == LibraryItemStorage.AppLocal);
                    if (cloudItemForLocalItem != null)
                    {
                        cloudItemForLocalItem.LocalItem = localItem;
                        if (cloudItemForLocalItem.DownloadStatus != DownloadStatus.Downloading)
                        {
                            cloudItemForLocalItem.DownloadStatus = DownloadStatus.Completed;
                        }
                    }
                }
            }

            await sort(librarySort);

            OnPropertyChanged(nameof(CloudItemsCount));
        }
Example #9
0
        public Library(Account accountViewModel)
        {
            this.accountViewModel = accountViewModel;
            Sort     = new Command <LibrarySort>(p => LibrarySort = p);
            Manage   = new Command(() => manage());
            Download = new Command <LibraryItem>(async p => await DownloadItem(p, true),
                                                 p => { return(p != null && !p.IsLocal && p.DownloadStatus != DownloadStatus.Downloading); });
            CancelDownload = new Command <LibraryItem>(p => cancelDownload(p),
                                                       p => { return(p != null && !p.IsLocal && p.DownloadStatus == DownloadStatus.Downloading); });
            Play = new Command <LibraryItem>(async p => await play(p),
                                             p => { return(p != null && (p.IsLocal || p.LocalItem != null)); });
            Delete = new Command <LibraryItem>(async p =>
            {
                if (p == null)
                {
                    return;
                }

                var message = string.Empty;
                if (p.IsLocal)
                {
                    message = "Are you sure you want to delete this recording from your device?" +
                              Environment.NewLine + "It is no longer available to download from the cloud.";
                    LibraryItem cloudRecording = null;
                    if (CloudItems != null)
                    {
                        cloudRecording = CloudItems.ToList().FirstOrDefault(c => c.ID == p.ID);
                    }

                    if (cloudRecording != null)
                    {
                        var timeLeft = cloudRecording.Expires.ToLocalTime().Subtract(DateTime.Now);
                        message      = "Are you sure you want to delete this recording from your device?" +
                                       Environment.NewLine + "You can download it again from the cloud within the next " +
                                       Math.Round(timeLeft.TotalDays) + " days.";
                    }
                }
                else
                {
                    message = "Are you sure you want to delete this recording from the cloud?" + Environment.NewLine +
                              "You will need to record it again to download and watch on any device.";
                    LibraryItem localRecording = null;
                    if (LocalItems != null)
                    {
                        localRecording = LocalItems.ToList().FirstOrDefault(l => l.ID == p.ID);
                    }

                    if (localRecording != null)
                    {
                        message = "Are you sure you want to delete this recording from the cloud?" +
                                  Environment.NewLine + "It will no longer be available for download on any device.";
                    }
                }

                if (await Application.Current.MainPage.DisplayAlert("Delete Recording", message, "Yes", "No"))
                {
                    try
                    {
                        CancelDownload?.Execute(p);

                        IsLoading = true;
                        if (!await delete(p))
                        {
                            await Application.Current.MainPage.DisplayAlert("Error Deleting",
                                                                            "Unable to delete the selected recording.", "OK");
                        }
                        else
                        {
                            OnItemDeleted?.Invoke(this, null);
                        }

                        IsLoading = false;
                    }
                    catch (Exception ex)
                    {
                        LoggerService.Instance.Log("ERROR: Library.DeleteCommand: " + ex);
                    }
                }
            },
                                               p => { return(p != null && p.Storage != LibraryItemStorage.iTunes); });

            DownloadChecked = new Command(async() => await downloadChecked(),
                                          () => { return(selectedView == LibraryViewMode.Cloud); });
            ManageDone    = new Command(() => manageDone());
            DeleteChecked = new Command(async() =>
            {
                IEnumerable <LibraryItem> items = null;
                if (selectedView == LibraryViewMode.Cloud)
                {
                    items = CloudItems.Where(l => l.Checked);
                }
                else
                {
                    items = LocalItems.Where(l => l.Checked);
                }

                if (items == null || !items.Any())
                {
                    await Application.Current.MainPage.DisplayAlert("Delete Recordings",
                                                                    "Please select one or more recordings to delete.", "OK");
                    return;
                }

                if (await Application.Current.MainPage.DisplayAlert("Delete Recordings",
                                                                    "Are you sure you want to delete the selected recordings?", "Yes", "No"))
                {
                    if (!await deleteMultipleItems(items.ToArray()))
                    {
                        await Application.Current.MainPage.DisplayAlert("Error Deleting",
                                                                        "Unable to delete all of the selected recordings.", "OK");
                    }
                }

                Edit = false;
            });

            RefreshCloudItems = new Command(async() =>
            {
                Edit = false;
                await getItems(true);
                try
                {
                    var clouds = cloudItems.ToList();
                    foreach (var cloudItem in clouds)
                    {
                        if (!string.IsNullOrEmpty(cloudItem.SmallThumbnailUri))
                        {
                            await ImageService.Instance.InvalidateCacheEntryAsync(cloudItem.SmallThumbnailUri,
                                                                                  CacheType.All);
                        }

                        if (!string.IsNullOrEmpty(cloudItem.LargeThumbnailUri))
                        {
                            await ImageService.Instance.InvalidateCacheEntryAsync(cloudItem.LargeThumbnailUri,
                                                                                  CacheType.All);
                        }

                        cloudItem.RefreshImages();
                    }
                }
                catch (Exception ex)
                {
                    //XXX : Handle error
                    LoggerService.Instance.Log("ERROR: Library.RefreshCloudItems: " + ex);
                }

                IsRefreshing = false;
            });

            RefreshLocalItems = new Command(async() =>
            {
                Edit = false;
                await updateLocalItems();
                IsRefreshing = false;
            });

            itemDownloader = ItemDownloaderService.Instance;
            itemDownloader.DownloadProgress += ItemDownloaderOnDownloadProgress;
            itemDownloader.DownloadComplete += ItemDownloaderOnDownloadComplete;
        }