Пример #1
0
        public Save DeleteSource(SourcesExt source)
        {
            using (var client = new LLCContext())
            {
                Console.WriteLine(JsonConvert.SerializeObject(source));

                var obj = Source(source.Id, SearchType.Id);
                client.Buckets.Remove(new Buckets
                {
                    Id = obj.S3bucketId
                });

                client.Sources.Remove(new Sources
                {
                    Id         = source.Id,
                    S3bucketId = obj.S3bucketId
                });

                try
                {
                    client.SaveChanges();
                    return(new Save {
                        Status = true
                    });
                }
                catch (Exception e)
                {
                    Console.WriteLine(e.Message);
                    return(new Save {
                        Status = false
                    });
                }
            }
        }
Пример #2
0
        public JsonResult Post([FromBody] SourcesExt source)
        {
            if (source.Delete && !string.IsNullOrEmpty(source.Id))
            {
                return(Json(_service.DeleteSource(source)));
            }
            else if (ModelState.IsValid)
            {
                return(Json(_service.SaveSource(source)));
            }

            return(Json(new Save {
                Status = false
            }));
        }
Пример #3
0
        public Save SaveSource(SourcesExt source)
        {
            Console.WriteLine($"ID is {source.Id} and Bucket ID is {source.S3bucketId}");
            Console.WriteLine($"ID is null ? {string.IsNullOrEmpty(source.Id)} and Bucket ID is null? {string.IsNullOrEmpty(source.S3bucketId)}");
            Console.WriteLine($"Check is {source.AllowLinkChecking} and Extractions is {source.AllowLinkExtractions}");

            // If Id or S3BucketId are both not null or occupied, error!
            if ((string.IsNullOrEmpty(source.Id) && !string.IsNullOrEmpty(source.S3bucketId)) ||
                (!string.IsNullOrEmpty(source.Id) && string.IsNullOrEmpty(source.S3bucketId)))
            {
                return(new Save {
                    Status = false
                });
            }

            using (var client = new LLCContext())
            {
                if (string.IsNullOrEmpty(source.Id) && string.IsNullOrEmpty(source.S3bucketId))
                {
                    Console.WriteLine("Adding source");

                    var bucket = Guid.NewGuid().ToString();
                    var sid    = Guid.NewGuid().ToString();
                    var now    = DateTime.Now;
                    client.Buckets.Add(new Buckets
                    {
                        AccessKey    = source.AccessKey,
                        DateCreated  = now,
                        Id           = bucket,
                        Name         = source.S3bucketName,
                        Region       = source.Region,
                        SearchPrefix = source.S3bucketSearchPrefix,
                        SecretKey    = source.SecretKey
                    });

                    client.Sources.Add(new Sources
                    {
                        AllowLinkChecking    = source.AllowLinkChecking == null ? false : source.AllowLinkChecking,
                        AllowLinkExtractions = source.AllowLinkExtractions == null ? false : source.AllowLinkExtractions,
                        Id          = sid,
                        DateCreated = now,
                        Description = source.Description,
                        Name        = source.Name,
                        S3bucketId  = bucket
                    });
                }
                else
                {
                    Console.WriteLine("Update source");

                    client.Buckets.Update(new Buckets
                    {
                        AccessKey    = source.AccessKey,
                        Id           = source.S3bucketId,
                        Name         = source.S3bucketName,
                        Region       = source.Region,
                        SearchPrefix = source.S3bucketSearchPrefix,
                        SecretKey    = source.SecretKey
                    });

                    client.Sources.Update(new Sources
                    {
                        AllowLinkChecking    = source.AllowLinkChecking,
                        AllowLinkExtractions = source.AllowLinkExtractions,
                        Id          = source.Id,
                        Description = source.Description,
                        Name        = source.Name,
                        S3bucketId  = source.S3bucketId
                    });
                }

                try
                {
                    client.SaveChanges();
                    return(new Save {
                        Status = true
                    });
                }
                catch (Exception e)
                {
                    Console.WriteLine(e.Message);
                    return(new Save {
                        Status = false
                    });
                }
            }
        }