All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.assembly.RaptorKtorRoutesComponent.kt Maven / Gradle / Ivy

There is a newer version: 0.26.0
Show newest version
package io.fluidsonic.raptor.ktor

import io.fluidsonic.raptor.*


public abstract class RaptorKtorRoutesComponent> internal constructor() :
	RaptorComponent.Base(RaptorKtorPlugin),
	RaptorComponentSet {

	@RaptorDsl
	override val all: RaptorAssemblyQuery
		get() = componentRegistry.all(Keys.routeComponent).all


	internal fun complete(): Collection =
		componentRegistry.many(Keys.routeComponent).map { it.complete() }


	@RaptorDsl
	public fun new(path: String, host: String? = null): RaptorKtorRouteComponent =
		componentRegistry.register(Keys.routeComponent, RaptorKtorRouteComponent(host = host, path = path))


	@RaptorDsl
	public fun new(path: String, host: String? = null, configure: RaptorKtorRouteComponent.() -> Unit = {}) {
		new(host = host, path = path).configure()
	}


	public class NonRoot internal constructor() : RaptorKtorRoutesComponent()


	public class Root internal constructor() : RaptorKtorRoutesComponent() {

		@RaptorDsl
		public fun new(host: String? = null): RaptorKtorRouteComponent =
			componentRegistry.register(Keys.routeComponent, RaptorKtorRouteComponent(host = host, path = "/"))


		@RaptorDsl
		public fun new(host: String? = null, configure: RaptorKtorRouteComponent.() -> Unit = {}) {
			new(host = host).configure()
		}
	}
}


@RaptorDsl
public fun RaptorAssemblyQuery>.new(path: String, host: String? = null): RaptorAssemblyQuery =
	map { it.new(path = path, host = host) }


@RaptorDsl
public fun RaptorAssemblyQuery>.new(
	path: String,
	host: String? = null,
	configure: RaptorKtorRouteComponent.() -> Unit = {},
) {
	this {
		new(host = host, path = path).configure()
	}
}


@JvmName("rootNew")
@RaptorDsl
public fun RaptorAssemblyQuery.new(host: String? = null): RaptorAssemblyQuery =
	map { it.new(host = host) }


@JvmName("rootNew")
@RaptorDsl
public fun RaptorAssemblyQuery.new(
	host: String? = null,
	configure: RaptorKtorRouteComponent.() -> Unit = {},
) {
	this {
		new(host = host).configure()
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy