categories

This commit is contained in:
Your Name 2025-03-18 19:46:43 +03:00
parent d92f5a2d5d
commit 5915ead7dc
6 changed files with 81 additions and 18 deletions

View File

@ -7,6 +7,12 @@ CREATE TABLE IF NOT EXISTS users (
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
); );
CREATE TABLE IF NOT EXISTS categories(
id serial PRIMARY KEY,
name VARCHAR(255) NOT NULL,
description VARCHAR(255) NOT NULL
);
CREATE TABLE IF NOT EXISTS sneakers( CREATE TABLE IF NOT EXISTS sneakers(
id SERIAL PRIMARY KEY, id SERIAL PRIMARY KEY,
name VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL,
@ -15,14 +21,25 @@ CREATE TABLE IF NOT EXISTS sneakers(
discount INTEGER NOT NULL CHECK (discount >= 0 AND discount <= 100), discount INTEGER NOT NULL CHECK (discount >= 0 AND discount <= 100),
photo VARCHAR(255) NOT NULL, photo VARCHAR(255) NOT NULL,
gender CHAR(1) NOT NULL CHECK (gender IN ('M', 'F', 'U')), gender CHAR(1) NOT NULL CHECK (gender IN ('M', 'F', 'U')),
bootSize INTEGER NOT NULL bootSize INTEGER NOT NULL,
categoryid INTEGER NOT NULL,
FOREIGN KEY (categoryid) REFERENCES categories(id) ON DELETE CASCADE
); );
INSERT INTO sneakers (name, description, cost, discount, photo, gender, bootSize) INSERT INTO categories (name, description)
VALUES ('Adidas', 'fast', 120.50, 10, 'https://i8.amplience.net/i/jpl/jd_619310_a?qlt=92', 'M', 42); VALUES ('tennis', 'for tennis');
INSERT INTO sneakers (name, description, cost, discount, photo, gender, bootSize) INSERT INTO categories (name, description)
VALUES ('Nike Air Max', 'Comfortable running shoes', 140, 40, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRe7ZbQ92u1JD-JgD4Kkhkju83p_uvKelP5jw&s', 'F', 39); VALUES ('outdoor', 'for walking');
INSERT INTO sneakers (name, description, cost, discount, photo, gender, bootSize) INSERT INTO categories (name, description)
VALUES ('Puma', 'fast too', 80.12, 80, 'https://img01.ztat.net/article/spp-media-p1/c6ebc4348bd34d9fa4235a82453230fe/3c034c2c43b94d879d41d33d0eb18e14.jpg?imwidth=1800&filter=packshot', 'U', 41); VALUES ('football', 'for football');
INSERT INTO sneakers (name, description, cost, discount, photo, gender, bootSize, categoryid)
VALUES ('Adidas', 'fast', 120.50, 10, 'https://i8.amplience.net/i/jpl/jd_619310_a?qlt=92', 'M', 42, 3);
INSERT INTO sneakers (name, description, cost, discount, photo, gender, bootSize, categoryid)
VALUES ('Nike Air Max', 'Comfortable running shoes', 140, 40, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRe7ZbQ92u1JD-JgD4Kkhkju83p_uvKelP5jw&s', 'F', 39, 2);
INSERT INTO sneakers (name, description, cost, discount, photo, gender, bootSize, categoryid)
VALUES ('Puma', 'fast too', 80.12, 80, 'https://img01.ztat.net/article/spp-media-p1/c6ebc4348bd34d9fa4235a82453230fe/3c034c2c43b94d879d41d33d0eb18e14.jpg?imwidth=1800&filter=packshot', 'U', 41, 1);

View File

@ -158,10 +158,12 @@ fun Application.configureRouting() {
log.info("User $userEmail is accessing /mainWindow") log.info("User $userEmail is accessing /mainWindow")
val sneakers = AuthService.selectSneakers() val sneakers = AuthService.selectSneakers()
if (sneakers.isNotEmpty()) { val categories = AuthService.selectCategories()
call.respond(mapOf("sneakers" to sneakers))
if (sneakers.isNotEmpty() && categories.isNotEmpty()) {
call.respond(SneakerCategoryResponse(sneakers, categories))
} else { } else {
call.respond(mapOf("error" to "No sneakers found")) call.respond(mapOf("error" to "No sneakers or categories found"))
} }
} catch (e: Exception) { } catch (e: Exception) {
log.error("Error fetching sneakers: ${e.message}", e) log.error("Error fetching sneakers: ${e.message}", e)

View File

@ -103,7 +103,8 @@ object AuthService {
discount = it[Sneakers.discount], discount = it[Sneakers.discount],
photo = it[Sneakers.photo], photo = it[Sneakers.photo],
gender = it[Sneakers.gender], gender = it[Sneakers.gender],
bootSize = it[Sneakers.bootSize] bootSize = it[Sneakers.bootSize],
categoryId = it[Sneakers.categoryId]
) )
} }
} }
@ -111,6 +112,23 @@ object AuthService {
throw RuntimeException("Error selecting sneakers: ${e.message}", e) throw RuntimeException("Error selecting sneakers: ${e.message}", e)
} }
} }
fun selectCategories(): List<Category> {
try {
return transaction {
Categories.selectAll().map {
Category(
id = it[Categories.id],
name = it[Categories.name],
description = it[Categories.description],
)
}
}
} catch (e: Exception) {
throw RuntimeException("Error selecting categories: ${e.message}", e)
}
}
} }

View File

@ -1,13 +1,8 @@
package com.example package com.example
import com.example.Sneakers.char
import com.example.Sneakers.decimal
import com.example.Sneakers.integer
import com.example.Sneakers.varchar
import kotlinx.serialization.Contextual import kotlinx.serialization.Contextual
import kotlinx.serialization.Serializable import kotlinx.serialization.Serializable
import java.math.BigDecimal import java.math.BigDecimal
import java.text.DecimalFormat
@Serializable @Serializable
data class UserRegisterRequest(val name: String, val email: String, val password: String) data class UserRegisterRequest(val name: String, val email: String, val password: String)
@ -31,5 +26,19 @@ data class Sneaker(
val discount: Int, val discount: Int,
val photo: String, val photo: String,
val gender: Char, val gender: Char,
val bootSize: Int val bootSize: Int,
val categoryId: Int
) )
@Serializable
data class Category(
val id: Int,
val name: String,
val description: String
)
@Serializable
data class SneakerCategoryResponse(
val sneakers: List<Sneaker>,
val categories: List<Category>
)

View File

@ -1,6 +1,7 @@
package com.example package com.example
import kotlinx.serialization.Serializable import kotlinx.serialization.Serializable
import org.jetbrains.exposed.sql.ReferenceOption
import org.jetbrains.exposed.sql.Table import org.jetbrains.exposed.sql.Table
import org.jetbrains.exposed.sql.javatime.timestamp import org.jetbrains.exposed.sql.javatime.timestamp
import java.math.BigDecimal import java.math.BigDecimal
@ -26,6 +27,16 @@ object Sneakers : Table("sneakers") {
val photo = varchar("photo", 255) val photo = varchar("photo", 255)
val gender = char("gender") val gender = char("gender")
val bootSize = integer("bootsize") val bootSize = integer("bootsize")
val categoryId = integer("categoryid")
override val primaryKey = PrimaryKey(id) override val primaryKey = PrimaryKey(id)
} }
object Categories : Table("categories") {
val id = integer("id").autoIncrement()
val name = varchar("name", 255)
val description = varchar("description", 255)
override val primaryKey = PrimaryKey(id)
}

View File

@ -1,6 +1,12 @@
ktor {
application {
modules = [ com.example.ApplicationKt.main ]
}
}
jwt { jwt {
secret = "secret" secret = "secret"
issue = "http://localhost:8080" issue = "http://localhost:8080"
audience = "http://localhost:8080/test" // временная строка audience = "http://localhost:8080/mainWindow" // временная строка
realm = "Access to 'hello'" realm = "Access to 'hello'"
} }