File size: 4,450 Bytes
eb29a95
17aecfb
8fce765
 
98b0aa6
 
 
 
8fce765
9601c9e
8fce765
 
 
 
b0186cb
8fce765
 
 
98b0aa6
b34e9b1
 
1c0590e
1f31a76
b34e9b1
db9bd2d
 
 
 
 
 
 
 
 
1f31a76
 
 
 
 
 
 
96df716
1f31a76
 
 
 
 
 
 
d9ecfe6
 
17aecfb
 
d9ecfe6
f3dac82
d9ecfe6
1f31a76
17aecfb
eb29a95
17aecfb
 
e1a5fd6
 
 
 
 
 
558dd4f
e1a5fd6
 
 
 
 
 
 
 
 
 
 
 
 
 
db9bd2d
f3ad218
1c0590e
17aecfb
 
707441f
 
 
 
 
 
 
 
 
 
98b0aa6
 
707441f
98b0aa6
 
9fd8477
 
 
 
 
 
 
 
 
 
612d973
 
 
 
 
9fd8477
 
b0122ad
58dc3d3
b0122ad
 
fe56e1a
 
 
 
 
 
 
4537eb1
79d0fc0
b0122ad
 
4537eb1
44e7a8c
 
9fd8477
 
 
 
 
79d0fc0
 
 
 
fe56e1a
 
 
ffd658d
 
 
 
fe56e1a
9fd8477
 
db9bd2d
 
 
 
9fd8477
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import { json, type RequestEvent } from '@sveltejs/kit';
import prisma from '$lib/prisma';

import { tokenIsAvailable } from '$lib/utils';

/** @type {import('./$types').RequestHandler} */

export async function GET(request : RequestEvent) {
  const token = request.cookies.get('hf_access_token')
  let IS_ADMIN = false

  if (token) {
    const user = await tokenIsAvailable(token)
    if (user) {
      IS_ADMIN = process?.env?.SECRET_HF_ADMIN ? process?.env?.SECRET_HF_ADMIN.includes(user.sub) : false
    }
  }

  const page = parseInt(request.url.searchParams.get('page') || '0')
  const filter = request.url.searchParams.get('filter') || 'hotest'
  const search = request.url.searchParams.get('search') || ''
  const limit = parseInt(request.url.searchParams.get('limit') || '20')
  const base_model = request.url.searchParams.get('base_model') || undefined

  const orderBy: Record<string, string> = {}
  if (filter === 'hotest') {
    orderBy['likes7d'] = 'desc'
  } else if (filter === 'likes') {
    orderBy['likes'] = 'desc'
  } else {
    orderBy['createdAt'] = 'desc'
  }

  let base_model_mapped: string[] | undefined = undefined;
  if (base_model) {
    switch (base_model) {
      case "sd3":
        base_model_mapped = ['stabilityai/stable-diffusion-3-medium-diffusers']
        break;
      case "sdxl":
        base_model_mapped = ['stabilityai/stable-diffusion-xl-base-1.0']
        break;
      case "sd1":
        base_model_mapped = ['CompVis/stable-diffusion-v1-4', 'runwayml/stable-diffusion-v1-5']
        break;
    }
  }

  const only_not_public = filter === 'staff_only';

  const cards = await prisma.model.findMany({
    where: {
      ...(
        !IS_ADMIN ? { isPublic: true } : only_not_public ? { isPublic: false } : {}
      ),
      ...(base_model_mapped ? { base_model: { in: base_model_mapped } } : {}),
      OR: [
        { id: { contains: search } },
      ]
    },
    select: {
      id: true,
      likes: true,
      downloads: true,
      likes7d: true,
      image: true,
      isPublic: true,
      gallery: {
        select: {
          id: true,
          image: true,
        },
        where: {
          isPublic: true
        },
        orderBy: {
          createdAt: 'desc'
        },
        take: 1
      },
    },
    orderBy: orderBy,
    skip: page * limit,
    take: limit,
  })

  const total_reposId = await prisma.model.count({
    where: {
      ...(IS_ADMIN ? {} : { isPublic: true }),
      ...(base_model_mapped ? { base_model: { in: base_model_mapped } } : {}),
      OR: [
        { id: { contains: search } },
      ]
    },
  })

  return json({
    cards,
    total_items: total_reposId
  })
}

export async function PATCH({ request } : RequestEvent) {
  const headers = Object.fromEntries(request.headers.entries());

  if (headers["x-hf-token"] !== process.env.SECRET_HF_TOKEN) {
    return Response.json({
      message: "Wrong castle fam :^)"
    }, { status: 401 });
  }

  const models = await prisma.model.findMany({
    where: {
      isPublic: true
    }
  });

  let total_updates = 0;
  for (const model of models) {
    const hugging_face_request = await fetch(`https://huggingface.co/api/models?id=${model.id}&sort=likes7d`)
    const hugging_face_model = await hugging_face_request.json()?.catch(() => {})

    let hugging_face_model2 = undefined;

    if (!model.instance_prompt) {
      const hugging_face_request2 = await fetch(`https://huggingface.co/api/models/${model.id}`)
      hugging_face_model2 = await hugging_face_request2.json()?.catch(() => {})

    }
    
    if (!hugging_face_model?.[0]) {
      continue;
    }

    const base_model = hugging_face_model?.[0]?.tags?.find((tag: string) => tag.startsWith("base_model:"))?.split(":")[1] ?? null

    await prisma.model.update({
      where: {
        id: model.id
      },
      data: {
        likes: hugging_face_model?.[0]?.likes,
        downloads: hugging_face_model?.[0]?.downloads,
        likes7d: hugging_face_model?.[0]?.trendingScore,
        id: hugging_face_model?.[0]?.id,
        ...(hugging_face_model2?.cardData?.instance_prompt ? {
          instance_prompt: hugging_face_model2?.cardData?.instance_prompt,
        } : {}
        ),
        ...(base_model ? {
          base_model: base_model
        } : {}
        )
      }
    })
    .then(() => {
      total_updates++
    })
    .catch(() => {})
  }

  return json({
    message: `Updated ${total_updates} models`
  })
}