/BackupConsoleClient/Program.cs

# · C# · 224 lines · 166 code · 40 blank · 18 comment · 19 complexity · 6ae75e66edd181fdcdf61aa6f4522d94 MD5 · raw file

  1. using System;
  2. using System.IO;
  3. using System.Linq;
  4. using System.Text;
  5. using BackupConsoleClient.BackupServiceReference;
  6. namespace BackupConsoleClient
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. if (args.Length == 0 ||
  13. (args.Length == 1 && args[0].Contains("help")))
  14. {
  15. //Display help file.
  16. Console.WriteLine(File.ReadAllText(System.Configuration.ConfigurationManager.AppSettings["readme"]));
  17. }
  18. else
  19. {
  20. Run();
  21. }
  22. Console.ReadKey();
  23. }
  24. private static void Run()
  25. {
  26. Guid fileId;
  27. switch (CommandLineArguments.Instance.Command)
  28. {
  29. case CommandType.Save:
  30. //Save a file into Backup storage.
  31. //Check if the file exist.
  32. if (!File.Exists(CommandLineArguments.Instance.File))
  33. {
  34. Console.WriteLine(string.Format("The given file cannot be found on the computer: {0}"));
  35. break;
  36. }
  37. BackupEntityCommandActions.Save();
  38. break;
  39. case CommandType.LoadById:
  40. //Load the file from backup system based on the id.
  41. //Validate the file id.
  42. if (string.IsNullOrWhiteSpace(CommandLineArguments.Instance.Name) ||
  43. !Guid.TryParse(CommandLineArguments.Instance.Name, out fileId))
  44. {
  45. Console.WriteLine("The name of the file is not valid. The name have to be a GUID.");
  46. break;
  47. }
  48. WriteInformation(BackupEntityCommandActions.LoadById());
  49. break;
  50. case CommandType.LoadByName:
  51. //Load the file from backup system based on the name of the file.
  52. if (string.IsNullOrWhiteSpace(CommandLineArguments.Instance.Name))
  53. {
  54. Console.WriteLine("The name of the file is not specify.");
  55. break;
  56. }
  57. WriteInformation(BackupEntityCommandActions.LoadByName());
  58. break;
  59. case CommandType.LoadContentToFile:
  60. //Load the stream from backup system based on the id of the file.
  61. //Validate the file id.
  62. if (string.IsNullOrWhiteSpace(CommandLineArguments.Instance.Name) ||
  63. !Guid.TryParse(CommandLineArguments.Instance.Name, out fileId))
  64. {
  65. Console.WriteLine("The name of the file is not valid. The name have to be a GUID.");
  66. break;
  67. }
  68. //Validate the file path.
  69. if (string.IsNullOrWhiteSpace(CommandLineArguments.Instance.File))
  70. {
  71. Console.WriteLine("The path to file is not valid.");
  72. }
  73. BackupEntityCommandActions.LoadContentToFile();
  74. break;
  75. case CommandType.LoadAll:
  76. //Load all files information for a specific user.
  77. //Load files information + displat file information.
  78. BackupEntityCommandActions.LoadAll().ToList().ForEach(WriteInformation);
  79. break;
  80. case CommandType.Delete:
  81. //Save the file to a specific path.
  82. //Validate the file id.
  83. if (string.IsNullOrWhiteSpace(CommandLineArguments.Instance.Name) ||
  84. !Guid.TryParse(CommandLineArguments.Instance.Name, out fileId))
  85. {
  86. Console.WriteLine("The name of the file is not valid. The name have to be a GUID.");
  87. break;
  88. }
  89. BackupEntityCommandActions.Delete();
  90. break;
  91. case CommandType.TagSave:
  92. //Save the given tag.
  93. if (string.IsNullOrWhiteSpace(CommandLineArguments.Instance.Name))
  94. {
  95. Console.WriteLine("The tag name cannot be null or empty.");
  96. break;
  97. }
  98. TagCommandActions.Save();
  99. Console.WriteLine("The tag was saved.");
  100. break;
  101. case CommandType.TagDelete:
  102. if (string.IsNullOrWhiteSpace(CommandLineArguments.Instance.Id))
  103. {
  104. Console.WriteLine("The id of the tag is not specify");
  105. }
  106. TagCommandActions.Delete();
  107. Console.WriteLine("The tag was deleted.");
  108. break;
  109. case CommandType.TagGetParent:
  110. if (string.IsNullOrWhiteSpace(CommandLineArguments.Instance.Id))
  111. {
  112. Console.WriteLine("The id of the tag is not specify");
  113. }
  114. var parentEntity = TagCommandActions.GetParent();
  115. Console.WriteLine(string.Format("The parent tag: name - '{0}' id - '{1}'",
  116. parentEntity.Name,
  117. parentEntity.Id));
  118. break;
  119. case CommandType.TagGetChildrens:
  120. if (string.IsNullOrWhiteSpace(CommandLineArguments.Instance.Id))
  121. {
  122. Console.WriteLine("The id of the tag is not specify");
  123. }
  124. var items = TagCommandActions.GetChildrens();
  125. if (items.Count == 0)
  126. {
  127. Console.WriteLine("The tag don't have any childrens.");
  128. break;
  129. }
  130. StringBuilder sbItems = new StringBuilder();
  131. foreach (var item in items)
  132. {
  133. sbItems.Append(string.Format("{0} - {1}\n\r", item.Name, item.Id));
  134. }
  135. Console.WriteLine(string.Format("The childrens are: {0}", sbItems));
  136. break;
  137. case CommandType.TagLoad:
  138. if (string.IsNullOrWhiteSpace(CommandLineArguments.Instance.Id))
  139. {
  140. Console.WriteLine("The id of the tag is not specify");
  141. }
  142. var tag = TagCommandActions.Load();
  143. if(tag==null)
  144. {
  145. Console.WriteLine("There is not tag with the given id.");
  146. break;
  147. }
  148. Console.WriteLine(string.Format("The tag name is: {0}",tag.Name));
  149. break;
  150. case CommandType.TagLoadAll:
  151. StringBuilder sbLoadAll = new StringBuilder();
  152. foreach (var item in TagCommandActions.LoadAll())
  153. {
  154. sbLoadAll.Append(string.Format("{0} - {1}\n\r", item.Name, item.Id));
  155. }
  156. Console.WriteLine(string.Format("The childrens are: {0}", sbLoadAll));
  157. break;
  158. case CommandType.GetBackupEntitiesByTag:
  159. StringBuilder sbEntities = new StringBuilder();
  160. foreach (var item in BackupEntityCommandActions.GetBackupEntitiesByTag())
  161. {
  162. sbEntities.Append(string.Format("{0} - {1}\n\r", item.Name, item.Id));
  163. }
  164. Console.WriteLine(string.Format("The entities are: {0}", sbEntities));
  165. break;
  166. }
  167. }
  168. /// <summary>
  169. /// Write information about the backup entity to the console.
  170. /// </summary>
  171. /// <param name="backupEntity">The backup entity.</param>
  172. private static void WriteInformation(BackupEntity backupEntity)
  173. {
  174. Console.WriteLine(string.Format(@"Name - {0}", backupEntity.Name));
  175. Console.WriteLine(string.Format(@"Original file name - {0}", backupEntity.OriginalFileName));
  176. Console.WriteLine(string.Format(@"Upload by - {0}", backupEntity.UploadBy));
  177. Console.WriteLine(string.Format(@"Uplaod date - {0}", backupEntity.UploadDate));
  178. Console.WriteLine(string.Format(@"Id - {0}", backupEntity.Id));
  179. Console.WriteLine(string.Format(@"Description - {0}", backupEntity.Description));
  180. Console.WriteLine(string.Format(@"Vizibility - {0}", backupEntity.Visibility));
  181. Console.WriteLine(@"---------------------------------------------------------");
  182. }
  183. }
  184. }