Adds support for website APIs both complex and simple. This commit only supports GET requests to APIs. POST request support can be added on request. Client IDs and secrets are also supported. They can be added via source settings or automatically set by a website endpoint. Also fetch sources for scraping using the backgroundContext and remove some functions from using the main actor. Signed-off-by: kingbri <bdashore3@gmail.com>
27 lines
718 B
Swift
27 lines
718 B
Swift
//
|
|
// SourceHtmlParser+CoreDataProperties.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 8/20/22.
|
|
//
|
|
//
|
|
|
|
import CoreData
|
|
import Foundation
|
|
|
|
public extension SourceHtmlParser {
|
|
@nonobjc class func fetchRequest() -> NSFetchRequest<SourceHtmlParser> {
|
|
NSFetchRequest<SourceHtmlParser>(entityName: "SourceHtmlParser")
|
|
}
|
|
|
|
@NSManaged var rows: String
|
|
@NSManaged var searchUrl: String
|
|
@NSManaged var magnetHash: SourceMagnetHash?
|
|
@NSManaged var magnetLink: SourceMagnetLink?
|
|
@NSManaged var parentSource: Source?
|
|
@NSManaged var seedLeech: SourceSeedLeech?
|
|
@NSManaged var size: SourceSize?
|
|
@NSManaged var title: SourceTitle?
|
|
}
|
|
|
|
extension SourceHtmlParser: Identifiable {}
|