Skip to content

Commit

Permalink
Merge pull request #738 from podverse/develop
Browse files Browse the repository at this point in the history
Release v4.16.8
  • Loading branch information
mitchdowney committed Apr 17, 2024
2 parents 2d4c6f4 + 46130d6 commit 73b45a4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "podverse-api",
"version": "4.16.7",
"version": "4.16.8",
"description": "Data API, database migration scripts, and backend services for all Podverse models.",
"contributors": [
"Mitch Downey"
Expand Down
4 changes: 2 additions & 2 deletions src/lib/utility/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ export const delimitQueryValues = (ctx, keys) => {
export const chunkArray = (arr, chunkSize = 10) => {
let i
let j
const chunks = []
const chunks: any[] = []
for (i = 0, j = arr.length; i < j; i += chunkSize) {
const chunk = arr.slice(i, i + chunkSize) as never // TODO: What does this mean?
const chunk = arr.slice(i, i + chunkSize) as any[]
chunks.push(chunk)
}
return chunks
Expand Down
24 changes: 14 additions & 10 deletions src/services/podcastIndex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { request } from '~/lib/request'
import { getPodcastByPodcastIndexId } from '~/controllers/podcast'
import { Podcast } from '~/entities'
import { ValueTagOriginal } from 'podverse-shared'
import { chunkArray } from '~/lib/utility'
const shortid = require('shortid')
const sha1 = require('crypto-js/sha1')
const encHex = require('crypto-js/enc-hex')
Expand Down Expand Up @@ -174,16 +175,19 @@ export const addRecentlyUpdatedFeedUrlsToPriorityQueue = async (sinceTime?: numb
}
}

// TODO: THIS TAKES A VERY LONG TIME TO COMPLETE,
// AND IS ARBITRARILY LIMITED TO 10000...
// const uniquePodcastIndexIds = [...new Set(recentlyUpdatedPodcastIndexIds)].slice(0, 10000)

// console.log('unique recentlyUpdatedPodcastIndexIds count', uniquePodcastIndexIds.length)

// Send the feedUrls with matching podcastIndexIds found in our database to
// the priority parsing queue for immediate parsing.
if (recentlyUpdatedPodcastIndexIds.length > 0) {
await addFeedUrlsByPodcastIndexId(recentlyUpdatedPodcastIndexIds)
const recentlyUpdatedPodcastIndexIdsChunks = chunkArray(recentlyUpdatedPodcastIndexIds, 500)
console.log('recentlyUpdatedPodcastIndexIdsChunks array count', recentlyUpdatedPodcastIndexIdsChunks.length)
let chunkIndex = 0
for (const chunk of recentlyUpdatedPodcastIndexIdsChunks) {
try {
chunkIndex++
console.log('sending feedUrls chunk to queue...', chunkIndex)
if (chunk.length > 0) {
await addFeedUrlsByPodcastIndexId(chunk)
}
} catch (error) {
console.log('addFeedUrlsByPodcastIndexId error:', error)
}
}
} catch (error) {
console.log('addRecentlyUpdatedFeedUrlsToPriorityQueue', error)
Expand Down

0 comments on commit 73b45a4

Please sign in to comment.