public void Execute(string[] args)
        {
            ConsoleInput consoleInput = new ConsoleInput(args, name);
            if (consoleInput.IsValidCommandName())
            {
                ActivateParameters();
                var minimumParameters = parameters.MandatoryLength();
                var maximumParameters = parameters.ParametersLength();

                if (consoleInput.Parameters.Length >= minimumParameters && consoleInput.Parameters.Length <= maximumParameters)
                {
                    var phoneBook = new PhoneBook();
                    var fileIO = new InputOutput("PhoneBook.txt");
                    fileIO.ReadFile(ref phoneBook);
                    string index = consoleInput[0];
                    if (phoneBook.ValidIndex(index))
                    {
                        KeyValuePair<string, Contact> currentItem = phoneBook.GetElementTo(index);
                        ////Console.WriteLine("{0} {1} {2}", new object[] { index, currentItem.Value.Name, currentItem.Value.PhoneNumber });
                        message = string.Format("{0} {1} {2} {3}", index, currentItem.Value.Name, currentItem.Value.PhoneNumber, currentItem.Value.BirthDate);
                    }
                    else message = string.Format("Your input '{0}' is not valid.", index);
                }
                else
                {
                    message = string.Format("This command requires 1 mandatory parameter");
                    message += System.Environment.NewLine;
                    message += string.Format("{0}", string.Join(" ", parameters.Mandatory()[0].Name));
                }

                Console.WriteLine(Message());
            }
        }
示例#2
0
        public void Execute(string[] args)
        {
            ConsoleInput consoleInput = new ConsoleInput(args, name);
            if (consoleInput.IsValidCommandName())
            {
                ActivateParameters();
                var minimumParameters = parameters.MandatoryLength();
                var maximumParameters = parameters.ParametersLength();

                Parameters mandatoryAndOptional = new Parameters(consoleInput.Parameters);

                if (consoleInput.Parameters.Length >= minimumParameters && consoleInput.Parameters.Length <= maximumParameters)
                {
                    var name = consoleInput[0];
                    var phone = consoleInput[1];
                    var born = ValidateDate(mandatoryAndOptional);

                    var phoneBook = new PhoneBook();
                    var fileIO = new InputOutput("PhoneBook.txt");
                    fileIO.ReadFile(ref phoneBook);

                    if (phoneBook.Add(name: name, phone: phone, birthdate: born))
                    {
                        fileIO.WriteFile(ref phoneBook);
                        if (born != string.Empty)
                        {
                            var bornT = new BirthDate(born);
                            bornT.IsValid(new string[] { "yyyyMMdd" });
                            born = bornT.Format("yyyy-MM-dd");
                        }

                        message = string.Format("Added: {0} => {1} => {2}", name, phone, born);
                    }
                    else
                    {
                        message = string.Format("Cannot add." + System.Environment.NewLine + "Reason: Duplicate name/phone for {0} => {1}", name, phone);
                    }

                    ////Console.WriteLine("Total phone numbers: {0}", phoneBook.Count());
                    message += System.Environment.NewLine;
                    message += string.Format("Total phone numbers: {0}", phoneBook.Count());
                }
                else
                {
                    message += string.Format("This command requires:");
                    message += System.Environment.NewLine;
                    message += string.Format("- mandatory parameters: {0}, {1}", parameters.Mandatory()[0].Name, parameters.Mandatory()[1].Name);
                    message += System.Environment.NewLine;
                    message += string.Format("- optional parameters: {0}", parameters.Optional()[0].Name);
                    message += System.Environment.NewLine;
                    message += string.Format("Command format: add {0}", string.Join(" ", parameters.Original));
                }

                Console.WriteLine(Message());
            }
        }
示例#3
0
        public void TestWriteAndRead()
        {
            using (StreamWriter sW = new StreamWriter(memoryStream))
            {
                sW.WriteLine("Mihai::392032");
                sW.Flush();
                fileIO = new InputOutput(memoryStream);
                fileIO.StubReadFile(ref phoneBook);
            }

            Assert.AreEqual(1, phoneBook.Count());
        }
示例#4
0
        public void Execute(string[] args)
        {
            ConsoleInput consoleInput = new ConsoleInput(args, name);
            if (consoleInput.IsValidCommandName())
            {
                ActivateParameters();
                var phoneBook = new PhoneBook();
                var fileIO = new InputOutput("PhoneBook.txt");
                fileIO.ReadFile(ref phoneBook);
                int counted = phoneBook.Count();
                ////Console.WriteLine("Found {0} results.", counted);
                message = string.Format("Found {0} results.", counted);
            }

            Console.WriteLine(Message());
        }
示例#5
0
        public void Execute(string[] args)
        {
            ConsoleInput consoleInput = new ConsoleInput(args, name);
            if (consoleInput.IsValidCommandName())
            {
                ActivateParameters();
                var minimumParameters = parameters.MandatoryLength();
                var maximumParameters = parameters.ParametersLength();

                if (consoleInput.Parameters.Length >= minimumParameters && consoleInput.Parameters.Length <= maximumParameters)
                {
                    var phoneBook = new PhoneBook();
                    var fileIO = new InputOutput("PhoneBook.txt");
                    fileIO.ReadFile(ref phoneBook);
                    string index = consoleInput[0];
                    var currentItem = new KeyValuePair<string, Contact>();

                    if (phoneBook.RemoveAt(index, out currentItem))
                    {
                        // KeyValuePair<string, string> currentItem = phoneBook.GetElementTo(index);
                        // phoneBook.Remove(currentItem);
                        fileIO.WriteFile(ref phoneBook);
                        ////Console.WriteLine("The contact '{0} => {1}: {2}' has been deleted.", new object[] { currentItem.Key, currentItem.Value.Name, currentItem.Value.PhoneNumber });
                        message = string.Format("The contact '{0} => {1}: {2}' has been deleted.", currentItem.Key, currentItem.Value.Name, currentItem.Value.PhoneNumber);
                    }
                    else ////Console.WriteLine("Your input must be an integer between 0 and {0}", new object[] { phoneBook.Count() });
                        message = string.Format("Your input '{0}' is not valid.", index);
                }
                else
                {
                    message = string.Format("This command requires 1 mandatory parameter");
                    message += System.Environment.NewLine;
                    message += string.Format("{0}", string.Join(" ", parameters.Mandatory()[0].Name));
                }

                Console.WriteLine(Message());
            }
        }
 public ContactListPageApiModel()
 {
     //fileIO = new InputOutput(HttpContext.Current.Server.MapPath("PhoneBook.txt"));
     fileIO = new InputOutput(HttpContext.Current.Request.MapPath("~/PhoneBook.txt"));
     fileIO.ReadFile(ref phoneBook);
 }
示例#7
0
        public void Execute(string[] args)
        {
            ConsoleInput consoleInput = new ConsoleInput(args, name);
            if (consoleInput.IsValidCommandName())
            {
                ActivateParameters();
                var phoneBook = new PhoneBook();
                var fileIO = new InputOutput("PhoneBook.txt");
                fileIO.ReadFile(ref phoneBook);

                var maximumParameters = parameters.OptionalLength();
                Parameters mandatoryAndOptional = new Parameters(consoleInput.Parameters);
                inputParameters = mandatoryAndOptional.Mandatory();

                if (HasMaximumRequiredParameters(maximumParameters))
                {
                    var po = parameters.ParametersAreValid("optional", inputParameters);
                    if (!po) Console.WriteLine("OPTIONAL parameters are not ok!");

                    if (!po)
                    {
                        Console.WriteLine("Command usage: " + Help());
                    }
                    else
                    {
                        phoneBook.Backup();
                        string filterType = string.Empty;

                        if (inputParameters.Length > 0)
                        {
                            DateTime[] birthdayRange;
                            DateTime today = DateTime.UtcNow.ToLocalTime();
                            var dayOfWeek = (int)today.DayOfWeek;
                            var startRange = today;
                            var endRange = today;

                            filterType = inputParameters[0].Value;

                            ////Console.WriteLine("UTC: " + today);
                            ////Console.WriteLine("Local: " + today.ToLocalTime());

                            switch (filterType)
                            {
                                case "tomorrow":
                                    startRange = today.AddDays(1);
                                    endRange = today.AddDays(1);
                                    break;
                                case "thisweek":
                                    startRange = today.AddDays(0 - dayOfWeek);
                                    endRange = today.AddDays(6 - dayOfWeek);
                                    break;
                                case "nextweek":
                                    startRange = today.AddDays(0 - dayOfWeek + 7);
                                    endRange = today.AddDays(6 - dayOfWeek + 7);
                                    break;
                                default:
                                    filterType = "today";
                                    break;
                            }

                            birthdayRange = new DateTime[] { startRange, endRange };
                            phoneBook.BirthdayRange(birthdayRange);
                        }

                        if (phoneBook.Count() == 0)
                        {
                            if (filterType != string.Empty) Console.WriteLine(string.Format("There is not contact which has the birthday {0}.", new object[] { filterType }));
                            else Console.WriteLine("The phonebook is empty.");
                        }
                        else new ListConsole(phoneBook, filterType);

                        phoneBook.Restore();
                    }
                }

                message = "done";
            }
        }
示例#8
0
        private void ModifyContactData()
        {
            phoneBook = new PhoneBook();
            fileIO = new InputOutput("PhoneBook.txt");
            fileIO.ReadFile(ref phoneBook);

            message += System.Environment.NewLine;

            if (!ModifyContact()) message += string.Format("The ID '{0}' does not exist!", inputParameters[0].Value);

            message += Environment.NewLine;
        }
        public void Execute(string[] args)
        {
            ConsoleInput consoleInput = new ConsoleInput(args, name);
            if (consoleInput.IsValidCommandName())
            {
                ActivateParameters();
                var minimumParameters = parameters.MandatoryLength();

                Parameters mandatoryAndOptional = new Parameters(consoleInput.Parameters);
                inputParameters = mandatoryAndOptional.Mandatory();

                if (inputParameters.Length >= minimumParameters)
                {
                    string findWord = inputParameters[0].Value;
                    string pattern = @"(" + findWord + @")";

                    var design = new TableDesign();
                    var phoneBook = new PhoneBook();
                    var fileIO = new InputOutput("PhoneBook.txt");
                    fileIO.ReadFile(ref phoneBook);
                    phoneBook.Backup();
                    phoneBook.FilterBy(pattern, "phone");
                    int counted = phoneBook.Count();

                    if (counted == 0)
                    {
                        Console.WriteLine(string.Format("No result."));
                    }
                    else
                    {
                        Console.WriteLine(string.Format("INDEX" + design.SpaceLength(8, 5) + "| NAME" + design.SpaceLength(30, 4) + "| PHONE"));
                        Console.WriteLine(string.Format(design.SpaceLength(50, 0, "-")));
                        var contactNo = 0;
                        foreach (KeyValuePair<string, Contact> currentItem in phoneBook)
                        {
                            if (contactNo > 0)
                            {
                                Console.WriteLine();
                            }

                            string index = currentItem.Key;
                            string name = currentItem.Value.Name;
                            string phone = currentItem.Value.PhoneNumber;
                            string lineString = string.Format("{0}" + design.SpaceLength(8, index.ToString().Length) + "| {1}" + design.SpaceLength(30, name.Length) + "| {2}", index, name, phone);
                            string[] splittedLine = lineString.Split(new string[] { findWord }, StringSplitOptions.None);
                            var wordNo = 0;
                            foreach (string split in splittedLine)
                            {
                                if (wordNo > 0)
                                {
                                    Console.ForegroundColor = ConsoleColor.Black;
                                    Console.BackgroundColor = ConsoleColor.White;
                                    Console.Write(findWord);
                                    Console.ResetColor();
                                }

                                Console.Write(split);
                                wordNo++;
                            }

                            contactNo++;
                        }
                    }

                    phoneBook.Restore();
                }
                else Console.WriteLine(Help());

                message += "it's done";
            }
        }