Ejemplo n.º 1
0
        async Task IHtmlNotification.PushEmail(string email, Uri uri, string id, string userId)
        {
            try
            {
                ScaningUriModel searchUrls = await CreateScaningUriModel(id, userId, 0);

                if (searchUrls == null)
                {
                    return;
                }

                lock (lockEmails)
                {
                    if (!this._context.ParsingEmailModels.Where(e => e.ScaningUriModelId == id)
                        .Any(e => e.Email == email))
                    {
                        var parsingEmailModel = new ParsingEmailModel
                        {
                            Email             = email,
                            Sended            = false,
                            Uri               = uri,
                            ScaningUriModelId = id
                        };

                        this._context.Add(parsingEmailModel);
                        this._context.SaveChanges();
                    }
                }
            }
            catch (Exception ex)
            {
                await this._telegramService.SendMessageExceptionAsync(ex);
            }
        }
Ejemplo n.º 2
0
        async Task <string> IHtmlNotification.PushUri(string userId, int count)
        {
            ScaningUriModel searchUrls = await CreateScaningUriModel(string.Empty, userId, count);

            if (searchUrls == null)
            {
                return(null);
            }

            return(searchUrls.ScaningUriModelId);
        }
Ejemplo n.º 3
0
        async Task <bool> IHtmlNotification.PushUri(Uri uri, string id, string userId)
        {
            ScaningUriModel searchUrls = await CreateScaningUriModel(id, userId, 0);

            if (searchUrls == null)
            {
                return(false);
            }

            if (searchUrls.SearchUri.Contains(uri))
            {
                return(false);
            }

            searchUrls.SearchUri.Push(uri);

            return(true);
        }
Ejemplo n.º 4
0
        private async Task <ScaningUriModel> CreateScaningUriModel(string id, string userId, int count)
        {
            try
            {
                var searchUrls = this._uris.FirstOrDefault(u => u.ScaningUriModelId == id);

                if (searchUrls == null)
                {
                    lock (lockEmails)
                    {
                        searchUrls = this._context.ScaningUriModels
                                     .FirstOrDefault(u => u.ScaningUriModelId == id);

                        if (searchUrls == null)
                        {
                            {
                                searchUrls = new ScaningUriModel()
                                {
                                    UserId = userId,
                                    Count  = count
                                };

                                this._context.Add(searchUrls);
                                this._context.SaveChanges();
                            }

                            this._uris.Push(searchUrls);
                        }
                    }
                }

                return(searchUrls);
            }
            catch (Exception ex)
            {
                await this._telegramService.SendMessageExceptionAsync(ex);
            }

            return(null);
        }
Ejemplo n.º 5
0
        async Task <IEnumerable <ParsingEmailModel> > IHtmlNotification.GetEmails(string id, string userId)
        {
            try
            {
                ScaningUriModel searchUrls = await CreateScaningUriModel(id, userId, 0);

                if (searchUrls == null)
                {
                    return(null);
                }

                lock (lockEmails)
                {
                    var emails = this._context.ParsingEmailModels
                                 .Where(e => e.ScaningUriModelId == id && !e.Sended)
                                 .ToList();

                    if (emails != null)
                    {
                        for (int i = 0; i < emails.Count; i++)
                        {
                            emails[i].Sended = true;
                        }

                        this._context.SaveChanges();

                        return(emails);
                    }
                }
            }
            catch (Exception ex)
            {
                await this._telegramService.SendMessageExceptionAsync(ex);
            }

            return(null);
        }