Example #1
0
        public void SearchMoviesTest()
        {
            var remoteCall = ServiceProvider.GetService <RemoteSpider>();
            CinemaMoviesResponse movies = remoteCall.SendAsync(new CinemaMoviesRequest()
            {
                CinemaId = 13509
            }).Result;

            Assert.NotNull(movies.showData);
        }
Example #2
0
        public IEnumerable <Hall> GetByCinemaId(int cinemaId)
        {
            if (cinemaId <= 0)
            {
                return(Enumerable.Empty <Hall>());
            }

            IEnumerable <Hall> halls = _repository.QueryByCinemaId(cinemaId);

            if (halls.IsNullOrEmpty())
            {
                lock (_locker)
                {
                    halls = _repository.QueryByCinemaId(cinemaId);
                    if (halls.IsNullOrEmpty())
                    {
                        CinemaMoviesResponse movies = _remoteCall.SendAsync(new CinemaMoviesRequest()
                        {
                            CinemaId = cinemaId
                        }).Result;

                        var shows = movies.showData.movies.SelectMany(x => x.shows.SelectMany(o => o.plist))
                                    .AsParallel().Select(x =>
                        {
                            try
                            {
                                var result = _remoteCall.SendAsync(new SeatInfoRequest()
                                {
                                    SeqNo = x.seqNo
                                }).Result;
                                if (result?.seatData?.hall == null)
                                {
                                    _logger.LogError("结果为null, seqNo:" + x.seqNo);
                                    return(null);
                                }

                                return(result);
                            }
                            catch (Exception ex)
                            {
                                _logger.LogError("获取场次异常, seqNo:" + x.seqNo, ex);
                                return(null);
                            }
                        }).Where(x => x != null).Distinct(new SeatListResponseEqualityComparer()).ToList();

                        halls = shows.Select(x =>
                        {
                            string html = String.Empty;
                            try
                            {
                                html = _remoteCall.FeatchHtmlAsync(new FetchSeatHtmlRequest()
                                {
                                    SeqNo = x.seatData.show.seqNo
                                }).Result;
                            }
                            catch (Exception ex)
                            {
                                _logger.LogError("获取此次html异常, seqNo:" + x.seatData.show.seqNo, ex);
                            }

                            return(new Hall()
                            {
                                HallId = x.seatData.hall.hallId,
                                Name = x.seatData.hall.hallName,
                                CinemaId = x.seatData.cinema.cinemaId,
                                SeatJson = JsonConvert.SerializeObject(x.seatData.seat),
                                SeatHtml = html.IsNullOrEmpty()
                                        ? null
                                        : Regex.Replace(html, @"\s*(<[^>]+>)\s*", "$1", RegexOptions.Singleline)
                                           .Replace("seat sold", "seat selectable"),
                                LastUpdateTime = DateTime.Now
                            });
                        }).Where(x => x != null)
                                .ToList();

                        if (halls.Any())
                        {
                            _repository.InsertBatch(halls);
                        }
                    }
                }
            }

            return(halls);
        }