Blazor Diffusion

<back to all web services

UpdateArtifactReport

Artifacts
Requires Authentication
Required role:Admin
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using BlazorDiffusion.ServiceModel;

namespace BlazorDiffusion.ServiceModel
{
    public partial class Artifact
        : AuditBase
    {
        public virtual int Id { get; set; }
        [References(typeof(BlazorDiffusion.ServiceModel.Creative))]
        public virtual int CreativeId { get; set; }

        public virtual string FileName { get; set; }
        public virtual string FilePath { get; set; }
        public virtual string ContentType { get; set; }
        public virtual long ContentLength { get; set; }
        public virtual int Width { get; set; }
        public virtual int Height { get; set; }
        public virtual ulong Seed { get; set; }
        public virtual string Prompt { get; set; }
        public virtual bool? Nsfw { get; set; }
        public virtual long? AverageHash { get; set; }
        public virtual long? PerceptualHash { get; set; }
        public virtual long? DifferenceHash { get; set; }
        public virtual string Background { get; set; }
        public virtual string Lqip { get; set; }
        public virtual int Quality { get; set; }
        public virtual int LikesCount { get; set; }
        public virtual int AlbumsCount { get; set; }
        public virtual int DownloadsCount { get; set; }
        public virtual int SearchCount { get; set; }
        public virtual int TemporalScore { get; set; }
        public virtual int Score { get; set; }
        public virtual int Rank { get; set; }
        public virtual string RefId { get; set; }
        public virtual Dictionary<string, string> Versions { get; set; } = new();
    }

    public partial class ArtifactReport
    {
        public virtual long Id { get; set; }
        [References(typeof(BlazorDiffusion.ServiceModel.Artifact))]
        public virtual int ArtifactId { get; set; }

        public virtual int AppUserId { get; set; }
        public virtual Artifact Artifact { get; set; }
        public virtual ReportType Type { get; set; }
        public virtual string Description { get; set; }
        public virtual DateTime CreatedDate { get; set; }
        public virtual string Notes { get; set; }
        public virtual DateTime? ActionedDate { get; set; }
        public virtual string ActionedBy { get; set; }
    }

    public enum ReportType
    {
        Nsfw,
        Malformed,
        Blurred,
        LowQuality,
        Other,
    }

    [ValidateRequest("IsAdmin")]
    public partial class UpdateArtifactReport
        : IPatchDb<ArtifactReport>
    {
        [Validate("GreaterThan(0)")]
        public virtual int ArtifactId { get; set; }

        public virtual ReportType? Type { get; set; }
        public virtual string Description { get; set; }
    }

}

namespace ServiceStack
{
    [DataContract]
    public partial class AuditBase
    {
        [DataMember(Order=1)]
        public virtual DateTime CreatedDate { get; set; }

        [DataMember(Order=2)]
        [Required]
        public virtual string CreatedBy { get; set; }

        [DataMember(Order=3)]
        public virtual DateTime ModifiedDate { get; set; }

        [DataMember(Order=4)]
        [Required]
        public virtual string ModifiedBy { get; set; }

        [DataMember(Order=5)]
        public virtual DateTime? DeletedDate { get; set; }

        [DataMember(Order=6)]
        public virtual string DeletedBy { get; set; }
    }

}

C# UpdateArtifactReport DTOs

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

HTTP + JSV

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

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

{
	artifactId: 0,
	type: Nsfw,
	description: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	id: 0,
	artifactId: 0,
	appUserId: 0,
	artifact: 
	{
		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-01,
		createdBy: String,
		modifiedDate: 0001-01-01,
		modifiedBy: String,
		deletedDate: 0001-01-01,
		deletedBy: String
	},
	type: Nsfw,
	description: String,
	createdDate: 0001-01-01,
	notes: String,
	actionedDate: 0001-01-01,
	actionedBy: String
}