Skip to content

Commit d806bec

Browse files
authored
Merge pull request #37 from Go-phie/bugfix/DD-35
fixed takanimelist link, fixed #35
2 parents c3cc746 + c1a1ca0 commit d806bec

File tree

5 files changed

+44
-4
lines changed

5 files changed

+44
-4
lines changed

engine/engines.go

+2
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,8 @@ type Movie struct {
174174
Source string // The Engine From which it is gotten from
175175
SubtitleLink *url.URL // single subtitle link
176176
SubtitleLinks map[string]*url.URL // Subtitle links for a series
177+
ImdbLink string // imdb link if available
178+
Tags string // csv of words that are linked to the movie if available
177179
}
178180

179181
// MovieJSON : JSON structure of all downloadable movies

engine/fzmovies.go

+15-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,21 @@ func (engine *FzEngine) parseSingleMovie(el *colly.HTMLElement, index int) (Movi
7575
}
7676
movie.Title = strings.TrimSuffix(strings.TrimSpace(el.ChildText("b")), "<more>")
7777
if len(el.ChildTexts("small")) > 3 {
78-
movie.Description = strings.TrimSpace(el.ChildTexts("small")[3])
78+
description := strings.TrimSpace(el.ChildTexts("small")[3])
79+
tagsRe := regexp.MustCompile(`Tags\s+: (.*)\.\.\..*`)
80+
descAndOthers := tagsRe.Split(description, -1)
81+
82+
if len(descAndOthers) > 0 {
83+
movie.Description = strings.TrimSuffix(descAndOthers[0], "<more>")
84+
tag := tagsRe.FindStringSubmatch(description)
85+
86+
if len(tag) > 1 {
87+
movie.Tags = strings.ReplaceAll(tag[1], "|", ",")
88+
}
89+
} else {
90+
movie.Description = description
91+
}
92+
7993
}
8094
downloadLink, err := url.Parse(el.Request.AbsoluteURL(el.ChildAttr("a", "href")))
8195

engine/netnaija.go

+25-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,31 @@ func (engine *NetNaijaEngine) updateDownloadProps(downloadCollector *colly.Colle
145145
movie := &((*movies)[movieIndex])
146146
description := e.ChildText("p")
147147
if description != "" {
148-
movie.Description = description
148+
extraRe := regexp.MustCompile(`Genre: `)
149+
descAndOthers := extraRe.Split(description, -1)
150+
151+
if len(descAndOthers) > 0 {
152+
movie.Description = descAndOthers[0]
153+
}
154+
155+
if len(descAndOthers) > 1 {
156+
others := descAndOthers[1]
157+
categoryRe := regexp.MustCompile(`^(.*)Release Date:`)
158+
starsRe := regexp.MustCompile(`Stars:(.*)Source:`)
159+
imdbRe := regexp.MustCompile(`.*(https:\/\/www\.imdb.*)`)
160+
categories := categoryRe.FindStringSubmatch(others)
161+
stars := starsRe.FindStringSubmatch(others)
162+
imdb := imdbRe.FindStringSubmatch(others)
163+
if len(categories) > 1 {
164+
movie.Category = categories[1]
165+
}
166+
if len(stars) > 1 {
167+
movie.Cast = stars[1]
168+
}
169+
if len(imdb) > 1 {
170+
movie.ImdbLink = imdb[1]
171+
}
172+
}
149173
}
150174
if !(strings.HasSuffix(movie.DownloadLink.String(), "/download") || strings.HasSuffix(movie.DownloadLink.String(), "?d=1")) {
151175
downloadLink, err := url.Parse(path.Join(movie.DownloadLink.String(), "download"))

engine/takanimelist.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type TakanimeList struct {
1919

2020
// NewTakanimeListEngine : create a new engine for scraping latest anime from chia-anime
2121
func NewTakanimeListEngine() *TakanimeList {
22-
base := "https://takanimelist.best"
22+
base := "https://takanimelist.live"
2323
baseURL, err := url.Parse(base)
2424
if err != nil {
2525
log.Fatal(err)

reference/Gophie.v1.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ info:
3838
### Anime
3939
4040
- [AnimeOut](https://www.animeout.xyz)
41-
- [TakanimeList] (https://takanimelist.best)
41+
- [TakanimeList] (https://takanimelist.live)
4242
4343
### Korean
4444

0 commit comments

Comments
 (0)