commit 8f589278d289e6e2af1c0c3f9c6e6b29fa1c6edb Author: usbharu Date: Wed Sep 25 18:57:17 2024 +0900 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b1dff0d --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Kotlin ### +.kotlin + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..cc5c502 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# デフォルトの無視対象ファイル +/shelf/ +/workspace.xml +# エディターベースの HTTP クライアントリクエスト +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..2a65317 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 0000000..d4b7acc --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..ee3319a --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..f455b73 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,21 @@ +plugins { + kotlin("jvm") version "2.0.20" +} + +group = "dev.usbharu" +version = "1.0-SNAPSHOT" + +repositories { + mavenCentral() +} + +dependencies { + testImplementation(kotlin("test")) +} + +tasks.test { + useJUnitPlatform() +} +kotlin { + jvmToolchain(11) +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..7fc6f1f --- /dev/null +++ b/gradle.properties @@ -0,0 +1 @@ +kotlin.code.style=official diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..249e583 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..4a6205f --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Wed Sep 25 16:12:48 JST 2024 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..1b6c787 --- /dev/null +++ b/gradlew @@ -0,0 +1,234 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..107acd3 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..965b80d --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,5 @@ +plugins { + id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0" +} +rootProject.name = "activity-streams" + diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Accept.kt b/src/main/kotlin/dev/usbharu/activitystreams/Accept.kt new file mode 100644 index 0000000..4483185 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Accept.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface Accept : Activity \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Accuracy.kt b/src/main/kotlin/dev/usbharu/activitystreams/Accuracy.kt new file mode 100644 index 0000000..64aa3e4 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Accuracy.kt @@ -0,0 +1,9 @@ +package dev.usbharu.activitystreams + +@JvmInline +value class Accuracy(val value: Float) { + init { + require(value >= 0.0f) + require(value <= 100.0f) + } +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Activity.kt b/src/main/kotlin/dev/usbharu/activitystreams/Activity.kt new file mode 100644 index 0000000..d5dd4df --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Activity.kt @@ -0,0 +1,15 @@ +package dev.usbharu.activitystreams + +sealed interface InternalActivity : Object{ + var actor: ObjectOrLink? + var target: ObjectOrLink? + var result: ObjectOrLink? + var origin: ObjectOrLink? + var instrument: ObjectOrLink? +} + +interface Activity : InternalActivity { + var `object`: ObjectOrLink? +} + +interface IntransitiveActivity : InternalActivity \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Add.kt b/src/main/kotlin/dev/usbharu/activitystreams/Add.kt new file mode 100644 index 0000000..61f0e4a --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Add.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface Add : Activity \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Announce.kt b/src/main/kotlin/dev/usbharu/activitystreams/Announce.kt new file mode 100644 index 0000000..fa575d4 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Announce.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Announce : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Application.kt b/src/main/kotlin/dev/usbharu/activitystreams/Application.kt new file mode 100644 index 0000000..12ed13c --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Application.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Application : Object { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Arrive.kt b/src/main/kotlin/dev/usbharu/activitystreams/Arrive.kt new file mode 100644 index 0000000..cb02b35 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Arrive.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Arrive : IntransitiveActivity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Article.kt b/src/main/kotlin/dev/usbharu/activitystreams/Article.kt new file mode 100644 index 0000000..260eaff --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Article.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface Article : Object \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Audio.kt b/src/main/kotlin/dev/usbharu/activitystreams/Audio.kt new file mode 100644 index 0000000..49cf97a --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Audio.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Audio : Document { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Block.kt b/src/main/kotlin/dev/usbharu/activitystreams/Block.kt new file mode 100644 index 0000000..0e4e276 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Block.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Block : Ignore { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Collection.kt b/src/main/kotlin/dev/usbharu/activitystreams/Collection.kt new file mode 100644 index 0000000..d05af69 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Collection.kt @@ -0,0 +1,9 @@ +package dev.usbharu.activitystreams + +interface Collection : Object, CollectionOrLink { + var totalItems: UInt? + var current: CollectionPageOrLink? + var first: CollectionPageOrLink? + var last: CollectionPageOrLink? + var items: List +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/CollectionOrLink.kt b/src/main/kotlin/dev/usbharu/activitystreams/CollectionOrLink.kt new file mode 100644 index 0000000..50a0a82 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/CollectionOrLink.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface CollectionOrLink \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/CollectionPage.kt b/src/main/kotlin/dev/usbharu/activitystreams/CollectionPage.kt new file mode 100644 index 0000000..0060593 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/CollectionPage.kt @@ -0,0 +1,7 @@ +package dev.usbharu.activitystreams + +interface CollectionPage : CollectionPageOrLink,Collection { + var partOf: CollectionOrLink? + var next: CollectionPageOrLink? + var prev: CollectionPageOrLink? +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/CollectionPageOrLink.kt b/src/main/kotlin/dev/usbharu/activitystreams/CollectionPageOrLink.kt new file mode 100644 index 0000000..c0a6dce --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/CollectionPageOrLink.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface CollectionPageOrLink : OrLink { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Create.kt b/src/main/kotlin/dev/usbharu/activitystreams/Create.kt new file mode 100644 index 0000000..63fe021 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Create.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Create : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Delete.kt b/src/main/kotlin/dev/usbharu/activitystreams/Delete.kt new file mode 100644 index 0000000..0e2adcf --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Delete.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Delete : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Dislike.kt b/src/main/kotlin/dev/usbharu/activitystreams/Dislike.kt new file mode 100644 index 0000000..bc6d905 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Dislike.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Dislike : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Document.kt b/src/main/kotlin/dev/usbharu/activitystreams/Document.kt new file mode 100644 index 0000000..5d5d371 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Document.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Document : Object { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Event.kt b/src/main/kotlin/dev/usbharu/activitystreams/Event.kt new file mode 100644 index 0000000..46a56fe --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Event.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Event : Object { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Flag.kt b/src/main/kotlin/dev/usbharu/activitystreams/Flag.kt new file mode 100644 index 0000000..e0ef2dc --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Flag.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Flag : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Follow.kt b/src/main/kotlin/dev/usbharu/activitystreams/Follow.kt new file mode 100644 index 0000000..9d5537a --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Follow.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Follow : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Group.kt b/src/main/kotlin/dev/usbharu/activitystreams/Group.kt new file mode 100644 index 0000000..29893c1 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Group.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Group : Object{ +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Ignore.kt b/src/main/kotlin/dev/usbharu/activitystreams/Ignore.kt new file mode 100644 index 0000000..7b8344e --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Ignore.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Ignore : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Image.kt b/src/main/kotlin/dev/usbharu/activitystreams/Image.kt new file mode 100644 index 0000000..611c8da --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Image.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Image : Document,ImageOrLink,OrLink{ +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/ImageOrLink.kt b/src/main/kotlin/dev/usbharu/activitystreams/ImageOrLink.kt new file mode 100644 index 0000000..ce06ed9 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/ImageOrLink.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface ImageOrLink { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Invite.kt b/src/main/kotlin/dev/usbharu/activitystreams/Invite.kt new file mode 100644 index 0000000..8699a89 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Invite.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface Invite : Offer \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Join.kt b/src/main/kotlin/dev/usbharu/activitystreams/Join.kt new file mode 100644 index 0000000..994fbe0 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Join.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Join : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/LangString.kt b/src/main/kotlin/dev/usbharu/activitystreams/LangString.kt new file mode 100644 index 0000000..38b977a --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/LangString.kt @@ -0,0 +1,8 @@ +package dev.usbharu.activitystreams + +import java.util.Locale + +interface LangString : Map { + fun getValue(): String? + fun getValueByLanguageTag(locale: Locale): String? +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Leave.kt b/src/main/kotlin/dev/usbharu/activitystreams/Leave.kt new file mode 100644 index 0000000..9961f6d --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Leave.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Leave : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Like.kt b/src/main/kotlin/dev/usbharu/activitystreams/Like.kt new file mode 100644 index 0000000..ac45526 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Like.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Like : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Link.kt b/src/main/kotlin/dev/usbharu/activitystreams/Link.kt new file mode 100644 index 0000000..41410a1 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Link.kt @@ -0,0 +1,15 @@ +package dev.usbharu.activitystreams + +import java.net.URI +import java.util.Locale + +interface Link : ObjectOrLink, UriOrLink, CollectionOrLink, ImageOrLink,CollectionPageOrLink { + var href: URI? + var rel: Set + var mediaType: MimeMediaType? + var name: LangString? + var hreflang: Locale? + var height: UInt? + var width: UInt? + var preview: ObjectOrLink? +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Listen.kt b/src/main/kotlin/dev/usbharu/activitystreams/Listen.kt new file mode 100644 index 0000000..31a6238 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Listen.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Listen : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Mention.kt b/src/main/kotlin/dev/usbharu/activitystreams/Mention.kt new file mode 100644 index 0000000..4482f41 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Mention.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Mention : Link { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/MimeMediaType.kt b/src/main/kotlin/dev/usbharu/activitystreams/MimeMediaType.kt new file mode 100644 index 0000000..0d1765b --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/MimeMediaType.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface MimeMediaType { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Move.kt b/src/main/kotlin/dev/usbharu/activitystreams/Move.kt new file mode 100644 index 0000000..dc0279e --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Move.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Move : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Note.kt b/src/main/kotlin/dev/usbharu/activitystreams/Note.kt new file mode 100644 index 0000000..ea0195b --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Note.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Note : Object { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Object.kt b/src/main/kotlin/dev/usbharu/activitystreams/Object.kt new file mode 100644 index 0000000..ed6b6f3 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Object.kt @@ -0,0 +1,33 @@ +package dev.usbharu.activitystreams + +import java.time.Duration +import java.time.OffsetDateTime + +interface Object : ObjectOrLink { + var attachment: ObjectOrLink? + var attributedTo: ObjectOrLink? + var audience: ObjectOrLink? + var content: LangString? + var context: ObjectOrLink? + var name: LangString? + var endTime: OffsetDateTime? + var generator: ObjectOrLink? + var icon: ImageOrLink? + var image: ImageOrLink? + var inReplyTo: ObjectOrLink? + var location: ObjectOrLink? + var preview: ObjectOrLink? + var published: OffsetDateTime? + var replies: Collection? + var startTime: OffsetDateTime? + var summary: LangString? + var tag: ObjectOrLink? + var updated: OffsetDateTime? + var url: UriOrLink? + var to: ObjectOrLink? + var bto: ObjectOrLink? + var cc: ObjectOrLink? + var bcc: ObjectOrLink? + var mediaType: MimeMediaType? + var duration: Duration? +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/ObjectOrLink.kt b/src/main/kotlin/dev/usbharu/activitystreams/ObjectOrLink.kt new file mode 100644 index 0000000..5cd1590 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/ObjectOrLink.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +sealed interface ObjectOrLink : OrLink { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Offer.kt b/src/main/kotlin/dev/usbharu/activitystreams/Offer.kt new file mode 100644 index 0000000..1bc2356 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Offer.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Offer : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/OrLink.kt b/src/main/kotlin/dev/usbharu/activitystreams/OrLink.kt new file mode 100644 index 0000000..c8c8095 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/OrLink.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface OrLink \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/OrderedCollection.kt b/src/main/kotlin/dev/usbharu/activitystreams/OrderedCollection.kt new file mode 100644 index 0000000..c7747ae --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/OrderedCollection.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface OrderedCollection : Collection { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/OrderedCollectionPage.kt b/src/main/kotlin/dev/usbharu/activitystreams/OrderedCollectionPage.kt new file mode 100644 index 0000000..25f0162 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/OrderedCollectionPage.kt @@ -0,0 +1,5 @@ +package dev.usbharu.activitystreams + +interface OrderedCollectionPage : OrderedCollection,CollectionPage { + var startIndex: UInt? +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Organization.kt b/src/main/kotlin/dev/usbharu/activitystreams/Organization.kt new file mode 100644 index 0000000..b7b0671 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Organization.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Organization : Object { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Page.kt b/src/main/kotlin/dev/usbharu/activitystreams/Page.kt new file mode 100644 index 0000000..7fc4da2 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Page.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Page : Document { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Person.kt b/src/main/kotlin/dev/usbharu/activitystreams/Person.kt new file mode 100644 index 0000000..125c06a --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Person.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface Person : Object {} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Place.kt b/src/main/kotlin/dev/usbharu/activitystreams/Place.kt new file mode 100644 index 0000000..6ff68ef --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Place.kt @@ -0,0 +1,10 @@ +package dev.usbharu.activitystreams + +interface Place : Object { + var accuracy: Accuracy? + var altitude: Float? + var latitude: Float? + var longitude: Float? + var radius: Radius? + var units: UriOrUnits? +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Profile.kt b/src/main/kotlin/dev/usbharu/activitystreams/Profile.kt new file mode 100644 index 0000000..3b393e5 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Profile.kt @@ -0,0 +1,5 @@ +package dev.usbharu.activitystreams + +interface Profile : Object { + var describes: Object? +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Question.kt b/src/main/kotlin/dev/usbharu/activitystreams/Question.kt new file mode 100644 index 0000000..1c8b048 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Question.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface Question : IntransitiveActivity \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Radius.kt b/src/main/kotlin/dev/usbharu/activitystreams/Radius.kt new file mode 100644 index 0000000..89bf036 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Radius.kt @@ -0,0 +1,8 @@ +package dev.usbharu.activitystreams + +@JvmInline +value class Radius(val value: Int) { + init { + require(value >= 0.0f) + } +} diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Read.kt b/src/main/kotlin/dev/usbharu/activitystreams/Read.kt new file mode 100644 index 0000000..36c4cc5 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Read.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface Read : Activity \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Reject.kt b/src/main/kotlin/dev/usbharu/activitystreams/Reject.kt new file mode 100644 index 0000000..f3bd783 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Reject.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Reject : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Relationship.kt b/src/main/kotlin/dev/usbharu/activitystreams/Relationship.kt new file mode 100644 index 0000000..3775b6a --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Relationship.kt @@ -0,0 +1,7 @@ +package dev.usbharu.activitystreams + +interface Relationship : Object { + var subject: ObjectOrLink? + var `object`: ObjectOrLink? + var relationship: Object? +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Remove.kt b/src/main/kotlin/dev/usbharu/activitystreams/Remove.kt new file mode 100644 index 0000000..270d4c9 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Remove.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Remove : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Service.kt b/src/main/kotlin/dev/usbharu/activitystreams/Service.kt new file mode 100644 index 0000000..c995e5b --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Service.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Service : Object { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/TentativeAccept.kt b/src/main/kotlin/dev/usbharu/activitystreams/TentativeAccept.kt new file mode 100644 index 0000000..345367c --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/TentativeAccept.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface TentativeAccept : Accept \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/TentativeReject.kt b/src/main/kotlin/dev/usbharu/activitystreams/TentativeReject.kt new file mode 100644 index 0000000..a78f7ba --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/TentativeReject.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface TentativeReject : Reject \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Tombstone.kt b/src/main/kotlin/dev/usbharu/activitystreams/Tombstone.kt new file mode 100644 index 0000000..3f84623 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Tombstone.kt @@ -0,0 +1,8 @@ +package dev.usbharu.activitystreams + +import java.time.OffsetDateTime + +interface Tombstone : Object { + var formerType: Object? + var deleted: OffsetDateTime? +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Travel.kt b/src/main/kotlin/dev/usbharu/activitystreams/Travel.kt new file mode 100644 index 0000000..3069617 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Travel.kt @@ -0,0 +1,3 @@ +package dev.usbharu.activitystreams + +interface Travel : IntransitiveActivity \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Undo.kt b/src/main/kotlin/dev/usbharu/activitystreams/Undo.kt new file mode 100644 index 0000000..ea63e99 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Undo.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Undo : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Units.kt b/src/main/kotlin/dev/usbharu/activitystreams/Units.kt new file mode 100644 index 0000000..0e331bb --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Units.kt @@ -0,0 +1,10 @@ +package dev.usbharu.activitystreams + +enum class Units(val value: String) : UriOrUnits { + cm("cm"), + feet("feet"), + inches("inches"), + km("km"), + m("m"), + miles("miles") +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Update.kt b/src/main/kotlin/dev/usbharu/activitystreams/Update.kt new file mode 100644 index 0000000..2bf78d1 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Update.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Update : Activity { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/UriOrLink.kt b/src/main/kotlin/dev/usbharu/activitystreams/UriOrLink.kt new file mode 100644 index 0000000..43c4522 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/UriOrLink.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface UriOrLink { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/UriOrUnits.kt b/src/main/kotlin/dev/usbharu/activitystreams/UriOrUnits.kt new file mode 100644 index 0000000..fc333e1 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/UriOrUnits.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface UriOrUnits { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/Video.kt b/src/main/kotlin/dev/usbharu/activitystreams/Video.kt new file mode 100644 index 0000000..3e783fb --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/Video.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface Video : Document { +} \ No newline at end of file diff --git a/src/main/kotlin/dev/usbharu/activitystreams/View.kt b/src/main/kotlin/dev/usbharu/activitystreams/View.kt new file mode 100644 index 0000000..3f8cf06 --- /dev/null +++ b/src/main/kotlin/dev/usbharu/activitystreams/View.kt @@ -0,0 +1,4 @@ +package dev.usbharu.activitystreams + +interface View : Activity { +} \ No newline at end of file