public override void DoExecute() { if (!UploadOlx && !DownloadOlx && !PatchOlx && !FullProcessingOlx) { Console.WriteLine("Use the options: --up, --down, --patch, --full. Or --help for help"); return; } Console.WriteLine("Profile {0}", Profile); var profile = Config.GetProfile(Profile); var credentials = Credentials.GetCredentials(Dir, Profile); if (DownloadOlx || FullProcessingOlx) { EdxInteraction.Download(Dir, Config, profile.EdxStudioUrl, credentials); } Console.WriteLine("Loading OLX"); var edxCourse = EdxCourse.Load(Dir + "/olx"); if (PatchOlx || FullProcessingOlx) { Console.WriteLine("Patching OLX..."); Patch(new OlxPatcher(Dir + "/olx"), Config, profile, edxCourse); Console.WriteLine("Patched!"); } if (UploadOlx || FullProcessingOlx) { EdxInteraction.Upload(Dir, edxCourse.CourseName, Config, profile.EdxStudioUrl, credentials); } }
public override void DoExecute() { Console.WriteLine("Profile {0}", Profile); var profile = Config.GetProfile(Profile); var credentials = Credentials.GetCredentials(Dir, Profile); EdxInteraction.Download(Dir, Config, profile.EdxStudioUrl, credentials); }
public override void DoExecute() { Console.WriteLine("Profile {0}", Profile); var profile = Config.GetProfile(Profile); var credentials = Credentials.GetCredentials(Dir, Profile); Console.WriteLine("Loading OLX"); var edxCourse = EdxCourse.Load(Dir + "/olx"); EdxInteraction.Upload(Dir, edxCourse.CourseName, Config, profile.EdxStudioUrl, credentials); }
public override void DoExecute() { var profile = Config.GetProfile(Profile); var credentials = Credentials.GetCredentials(Dir, Profile); EdxInteraction.Download(Dir, Config, profile.EdxStudioUrl, credentials); var edxCourse = EdxCourse.Load(Dir + "/olx"); if (edxCourse.CourseWithChapters.Chapters.Length != 0) { Console.WriteLine("List of chapters to be removed or replaced:"); foreach (var chapterName in edxCourse.CourseWithChapters.Chapters.Select(x => x.DisplayName)) { Console.WriteLine("\t" + chapterName); } while (true) { Console.WriteLine("Do you want to proceed? (y/n)"); var key = Console.ReadKey(); if (key.Key == ConsoleKey.Y) { break; } if (key.Key == ConsoleKey.N) { return; } } } var video = LoadVideoInfo(); VideoHistory.UpdateHistory(Dir, video); Console.WriteLine("Loading uLearn course from {0}", Config.ULearnCourseId); var course = new CourseLoader().LoadCourse(new DirectoryInfo(Path.Combine(Dir, Config.ULearnCourseId))); Console.WriteLine("Converting uLearn course \"{0}\" to Edx course", course.Id); Converter.ToEdxCourse( course, Config, profile.UlearnUrl + SlideUrlFormat, profile.UlearnUrl + SolutionsUrlFormat, video.Records.ToDictionary(x => x.Data.Id, x => Utils.GetNormalizedGuid(x.Guid)) ).Save(Dir + "/olx"); EdxInteraction.Upload(Dir, course.Id, Config, profile.EdxStudioUrl, credentials); }
public override void DoExecute() { if (!(Download ^ Upload)) { Console.Out.WriteLine("Use one of options: download or upload"); return; } Console.Out.WriteLine("Profile: {0}", Profile); var profile = Config.GetProfile(Profile); var credentials = Credentials.GetCredentials(Dir, Profile, "uLearn"); if (Download) { ULearnInteractor.Download(Dir, Force, Config, profile.UlearnUrl, credentials); } if (Upload) { ULearnInteractor.Upload(Dir, Config, profile.UlearnUrl, credentials); } }