Blazor Diffusion

<back to all web services

QueryArtifacts

Artifacts
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports BlazorDiffusion.ServiceModel

Namespace Global

    Namespace BlazorDiffusion.ServiceModel

        Public Partial Class Artifact
            Inherits AuditBase
            Public Overridable Property Id As Integer
            <References(GetType(Creative))>
            Public Overridable Property CreativeId As Integer

            Public Overridable Property FileName As String
            Public Overridable Property FilePath As String
            Public Overridable Property ContentType As String
            Public Overridable Property ContentLength As Long
            Public Overridable Property Width As Integer
            Public Overridable Property Height As Integer
            Public Overridable Property Seed As UInt64
            Public Overridable Property Prompt As String
            Public Overridable Property Nsfw As Boolean?
            Public Overridable Property AverageHash As Long?
            Public Overridable Property PerceptualHash As Long?
            Public Overridable Property DifferenceHash As Long?
            Public Overridable Property Background As String
            Public Overridable Property Lqip As String
            Public Overridable Property Quality As Integer
            Public Overridable Property LikesCount As Integer
            Public Overridable Property AlbumsCount As Integer
            Public Overridable Property DownloadsCount As Integer
            Public Overridable Property SearchCount As Integer
            Public Overridable Property TemporalScore As Integer
            Public Overridable Property Score As Integer
            Public Overridable Property Rank As Integer
            Public Overridable Property RefId As String
            Public Overridable Property Versions As Dictionary(Of String, String) = New Dictionary(Of String, String)
        End Class

        Public Partial Class ArtifactResult
            Inherits Artifact
            Public Overridable Property UserPrompt As String
            Public Overridable Property ArtistNames As List(Of String) = New List(Of String)
            Public Overridable Property ModifierNames As List(Of String) = New List(Of String)
            Public Overridable Property PrimaryArtifactId As Integer?
            Public Overridable Property OwnerRef As String
            Public Overridable Property Similarity As Double?
        End Class

        Public Partial Class QueryArtifacts
            Inherits QueryDb(Of Artifact)
            Public Overridable Property Id As Integer?
            Public Overridable Property Ids As List(Of Integer)
        End Class
    End Namespace

    Namespace ServiceStack

        <DataContract>
        Public Partial Class AuditBase
            <DataMember(Order:=1)>
            Public Overridable Property CreatedDate As Date

            <DataMember(Order:=2)>
            <Required>
            Public Overridable Property CreatedBy As String

            <DataMember(Order:=3)>
            Public Overridable Property ModifiedDate As Date

            <DataMember(Order:=4)>
            <Required>
            Public Overridable Property ModifiedBy As String

            <DataMember(Order:=5)>
            Public Overridable Property DeletedDate As Date?

            <DataMember(Order:=6)>
            Public Overridable Property DeletedBy As String
        End Class

        <DataContract>
        Public Partial Class QueryBase
            <DataMember(Order:=1)>
            Public Overridable Property Skip As Integer?

            <DataMember(Order:=2)>
            Public Overridable Property Take As Integer?

            <DataMember(Order:=3)>
            Public Overridable Property OrderBy As String

            <DataMember(Order:=4)>
            Public Overridable Property OrderByDesc As String

            <DataMember(Order:=5)>
            Public Overridable Property Include As String

            <DataMember(Order:=6)>
            Public Overridable Property Fields As String

            <DataMember(Order:=7)>
            Public Overridable Property Meta As Dictionary(Of String, String)
        End Class

        Public Partial Class QueryDb(Of T)
            Inherits QueryBase
        End Class

        <DataContract>
        Public Partial Class QueryResponse(Of T)
            <DataMember(Order:=1)>
            Public Overridable Property Offset As Integer

            <DataMember(Order:=2)>
            Public Overridable Property Total As Integer

            <DataMember(Order:=3)>
            Public Overridable Property Results As List(Of ArtifactResult)

            <DataMember(Order:=4)>
            Public Overridable Property Meta As Dictionary(Of String, String)

            <DataMember(Order:=5)>
            Public Overridable Property ResponseStatus As ResponseStatus
        End Class
    End Namespace
End Namespace

VB.NET QueryArtifacts DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /csv/reply/QueryArtifacts HTTP/1.1 
Host: blazordiffusion.com 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"id":0,"ids":[0],"skip":0,"take":0,"orderBy":"String","orderByDesc":"String","include":"String","fields":"String","meta":{"String":"String"}}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"offset":0,"total":0,"results":[{"id":0,"creativeId":0,"fileName":"String","filePath":"String","contentType":"String","contentLength":0,"width":0,"height":0,"seed":0,"prompt":"String","nsfw":false,"averageHash":0,"perceptualHash":0,"differenceHash":0,"background":"String","lqip":"String","quality":0,"likesCount":0,"albumsCount":0,"downloadsCount":0,"searchCount":0,"temporalScore":0,"score":0,"rank":0,"refId":"String","versions":{"String":"String"},"createdDate":"0001-01-01T00:00:00","createdBy":"String","modifiedDate":"0001-01-01T00:00:00","modifiedBy":"String","deletedDate":"0001-01-01T00:00:00","deletedBy":"String"}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}