public async Task <IActionResult> Edit(int id, [Bind("AuthorId,ArticleId")] AuthorArticle authorArticle)
        {
            if (id != authorArticle.AuthorId)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(authorArticle);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!AuthorArticleExists(authorArticle.AuthorId))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }
            ViewData["ArticleId"] = new SelectList(_context.Article, "Id", "Name", authorArticle.ArticleId);
            ViewData["AuthorId"]  = new SelectList(_context.Author, "Id", "LastName", authorArticle.AuthorId);
            return(View(authorArticle));
        }
        public async Task <IActionResult> Create([Bind("AuthorId,ArticleId")] AuthorArticle authorArticle)
        {
            if (ModelState.IsValid)
            {
                _context.Add(authorArticle);
                await _context.SaveChangesAsync();

                return(RedirectToAction(nameof(Index)));
            }
            ViewData["ArticleId"] = new SelectList(_context.Article, "Id", "Name", authorArticle.ArticleId);
            ViewData["AuthorId"]  = new SelectList(_context.Author, "Id", "LastName", authorArticle.AuthorId);
            return(View(authorArticle));
        }
예제 #3
0
        // GET: /<controller>/PullScrapedQueue/
        public string PullScrapedQueue()
        {
            int i = 0;

            //fetch up to 20 each run (testing!)
            int max = 20;

            while (i < max)
            {
                string articleJsonString = _queueContext.Pop();
                if (String.IsNullOrEmpty(articleJsonString) == true)
                {
                    //nothing found, can do 'break' here if don't want to try 20 more times
                    //but maybe they are empty 'errored' messages that need to be popped
                }
                else
                {
                    dynamic articleJson = null;
                    try
                    {
                        articleJson = Newtonsoft.Json.JsonConvert.DeserializeObject(articleJsonString);
                    }
                    catch (Exception ex)
                    {
                        string exception = ex.ToString();
                        //gulp
                    }

                    if (articleJson != null)
                    {
                        //try parsing all the bits
                        try
                        {
                            Author a1 = new Author();
                            a1      = Author.FindByName("", _dbContext);
                            a1.Name = "test 1";



                            Author a2 = new Author();
                            a2.Name = "test 2";

                            ArticleData art = new ArticleData();
                            art.Body = "art test";


                            AuthorArticle a = new AuthorArticle();

                            //try get pub and section info from input
                            Publication p = new Publication();

                            //otherwise create new publication and/or section
                            PublicationSection psect = new PublicationSection();
                        }
                        catch (Exception ex)
                        {
                            string exception = ex.ToString();
                            //gulp
                        }
                    }
                }
            }

            //return View();
            return("ingest api done");
        }