Blazor Diffusion

<back to all web services

QuerySearchStats

Analytics
Requires Authentication
Required role:Moderator
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

        <ValidateRequest(Validator:="HasRole(`Moderator`)")>
        Public Partial Class QuerySearchStats
            Inherits QueryDb(Of SearchStat)
        End Class

        Public Partial Class SearchStat
            Inherits StatBase
            Public Overridable Property Id As Integer
            Public Overridable Property Query As String
            Public Overridable Property Similar As String
            Public Overridable Property User As String
            Public Overridable Property Modifier As String
            Public Overridable Property Artist As String
            Public Overridable Property Album As String
            Public Overridable Property Show As String
            Public Overridable Property Source As String
            Public Overridable Property ArtifactId As Integer?
            Public Overridable Property AlbumId As Integer?
            Public Overridable Property ModifierId As Integer?
            Public Overridable Property ArtistId As Integer?
        End Class

        Public Partial Class StatBase
            Public Overridable Property RefId As String
            Public Overridable Property AppUserId As Integer?
            Public Overridable Property RawUrl As String
            Public Overridable Property RemoteIp As String
            Public Overridable Property CreatedDate As Date
        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 QuerySearchStats DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /json/reply/QuerySearchStats HTTP/1.1 
Host: blazordiffusion.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"skip":0,"take":0,"orderBy":"String","orderByDesc":"String","include":"String","fields":"String","meta":{"String":"String"}}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"offset":0,"total":0,"results":[{"id":0,"query":"String","similar":"String","user":"String","modifier":"String","artist":"String","album":"String","show":"String","source":"String","artifactId":0,"albumId":0,"modifierId":0,"artistId":0,"refId":"String","appUserId":0,"rawUrl":"String","remoteIp":"String","createdDate":"0001-01-01T00:00:00"}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}