예제 #1
0
        public Book CreateBook(Book value)
        {
            WebOperationContext woc = WebOperationContext.Current;

            if (woc == null)
                return null;

            if (value == null)
            {
                woc.OutgoingResponse.StatusCode = HttpStatusCode.BadRequest;
                return null;
            }

            if (!string.IsNullOrWhiteSpace(value.Title) && value.Title == "ERROR_500")
            {
                woc.OutgoingResponse.StatusCode = HttpStatusCode.InternalServerError;
                return null;
            }

            value.Id = Guid.NewGuid().ToString("N");
            Store.Books.Add(value);

            woc.OutgoingResponse.StatusCode = HttpStatusCode.Created;

            return value;
        }
예제 #2
0
        public void UpdateBook(string id, Book value)
        {
            WebOperationContext woc = WebOperationContext.Current;

            if (woc == null)
                return;

            if (value == null || value.Id != id)
            {
                woc.OutgoingResponse.StatusCode = HttpStatusCode.BadRequest;
                return;
            }

            Book book = Store.Books.FirstOrDefault(b => b.Id == id);
            if (book != null)
            {
                woc.OutgoingResponse.StatusCode = HttpStatusCode.NoContent;
                Store.Books.Remove(book);
                Store.Books.Add(value);
            }
            else if (id == "ERROR_500")
            {
                woc.OutgoingResponse.StatusCode = HttpStatusCode.InternalServerError;
            }
            else
            {
                woc.OutgoingResponse.StatusCode = HttpStatusCode.NotFound;
            }
        }
예제 #3
0
파일: Store.cs 프로젝트: Robin--/swaggerwcf
        static Store()
        {
            Books = new List<Book>();
            Authors = new List<Author>();
            
            var authorMiguelCervantes = new Author
            {
                Id = Guid.NewGuid().ToString("N"),
                Name = "Miguel de Cervantes"
            };
            var authorCharlesDickens = new Author
            {
                Id = Guid.NewGuid().ToString("N"),
                Name = "Charles Dickens"
            };
            var authorJRRTolkien = new Author
            {
                Id = Guid.NewGuid().ToString("N"),
                Name = "J. R. R. Tolkien"
            };
            var authorAntoineSaintExupery = new Author
            {
                Id = Guid.NewGuid().ToString("N"),
                Name = "Antoine de Saint-Exupéry"
            };
            var authorJKRowling = new Author
            {
                Id = Guid.NewGuid().ToString("N"),
                Name = "J. K. Rowling"
            };
            var authorAgathaChristie = new Author
            {
                Id = Guid.NewGuid().ToString("N"),
                Name = "Agatha Christie"
            };
            var authorCaoXueqin = new Author
            {
                Id = Guid.NewGuid().ToString("N"),
                Name = "Cao Xueqin"
            };
            var authorHRiderHaggard = new Author
            {
                Id = Guid.NewGuid().ToString("N"),
                Name = "H. Rider Haggard"
            };
            Authors.Add(authorMiguelCervantes);
            Authors.Add(authorCharlesDickens);
            Authors.Add(authorJRRTolkien);
            Authors.Add(authorAntoineSaintExupery);
            Authors.Add(authorJKRowling);
            Authors.Add(authorAgathaChristie);
            Authors.Add(authorCaoXueqin);
            Authors.Add(authorHRiderHaggard);

            var bookDonQuixote = new Book
            {
                Id = Guid.NewGuid().ToString("N"),
                Title = "Don Quixote",
                Author = authorMiguelCervantes,
                FirstPublished = 1605,
                Language = Language.Spanish
            };
            var bookATaleOfTwoCities = new Book
            {
                Id = Guid.NewGuid().ToString("N"),
                Title = "A Tale Of Two Cities",
                Author = authorCharlesDickens,
                FirstPublished = 1859,
                Language = Language.English
            };
            var bookTheLordOfTheRings = new Book
            {
                Id = Guid.NewGuid().ToString("N"),
                Title = "The Lord of the Rings",
                Author = authorJRRTolkien,
                FirstPublished = 1954,
                Language = Language.English
            };
            var bookTheHobbit = new Book
            {
                Id = Guid.NewGuid().ToString("N"),
                Title = "The Hobbit",
                Author = authorJRRTolkien,
                FirstPublished = 1937,
                Language = Language.English
            };
            var bookLePetitPrince = new Book
            {
                Id = Guid.NewGuid().ToString("N"),
                Title = "Le Petit Prince",
                Author = authorAntoineSaintExupery,
                FirstPublished = 1943,
                Language = Language.French
            };
            var bookHarryPotterAndThePhilosopherStone = new Book
            {
                Id = Guid.NewGuid().ToString("N"),
                Title = "Harry Potter and the Philosopher's Stone",
                Author = authorJKRowling,
                FirstPublished = 1997,
                Language = Language.English
            };
            var bookAndThenThereWereNone = new Book
            {
                Id = Guid.NewGuid().ToString("N"),
                Title = "And Then There Were None",
                Author = authorAgathaChristie,
                FirstPublished = 1939,
                Language = Language.English
            };
            var bookDreamOfTheRedChamber = new Book
            {
                Id = Guid.NewGuid().ToString("N"),
                Title = "紅樓夢/红楼梦 (Dream of the Red Chamber)",
                Author = authorCaoXueqin,
                FirstPublished = 1754,
                Language = Language.Chinese
            };
            var bookSheAHistoryOfAdventure = new Book
            {
                Id = Guid.NewGuid().ToString("N"),
                Title = "She: A History of Adventure",
                Author = authorHRiderHaggard,
                FirstPublished = 1887,
                Language = Language.English
            };
            Books.Add(bookDonQuixote);
            Books.Add(bookATaleOfTwoCities);
            Books.Add(bookTheLordOfTheRings);
            Books.Add(bookTheHobbit);
            Books.Add(bookLePetitPrince);
            Books.Add(bookHarryPotterAndThePhilosopherStone);
            Books.Add(bookAndThenThereWereNone);
            Books.Add(bookDreamOfTheRedChamber);
            Books.Add(bookSheAHistoryOfAdventure);
        }