Go to file
2024-06-16 18:10:49 -04:00
.config fork: vassago 2023-06-01 00:03:23 -04:00
.vscode web interface 2023-07-03 12:51:23 -04:00
assets smoot is defined as 5ft 7, don't use cm to approximate 2023-12-05 23:44:40 -05:00
Behavior organize - behaver is not a behavior, only one use of connection string 2024-04-05 22:18:45 -04:00
Conversion how about don't clear out the aliases? now I can configure more aliases 2023-12-05 23:57:21 -05:00
Migrations db migration: no featurepermissions, and channel permissions embedded in channel 2024-05-10 16:41:00 -04:00
Models we have a dropdown that fires an onchange to post the new value. 2024-06-16 18:10:49 -04:00
Properties web interface 2023-07-03 12:51:23 -04:00
ProtocolInterfaces more details, more links, fixed a bug where it wouldn't give itself a seen-in-channel 2024-06-10 16:24:30 -04:00
WebInterface we have a dropdown that fires an onchange to post the new value. 2024-06-16 18:10:49 -04:00
wwwroot we have a dropdown that fires an onchange to post the new value. 2024-06-16 18:10:49 -04:00
.gitignore web interface 2023-07-03 12:51:23 -04:00
appsettings.json move web interface around 2024-04-05 23:07:48 -04:00
Behaver.cs organize - behaver is not a behavior, only one use of connection string 2024-04-05 22:18:45 -04:00
ConsoleService.cs organize - behaver is not a behavior, only one use of connection string 2024-04-05 22:18:45 -04:00
externalProcess.cs start to structure code for multiplatofrm 2023-05-22 00:58:36 -04:00
Jenkinsfile once i figure out jenkins secrets, this'll be useful 2024-04-05 23:02:15 -04:00
Program.cs details pages for channels added 2024-06-09 17:37:09 -04:00
README.md channel permissions are just part of channel 2024-04-05 23:59:39 -04:00
Shared.cs keep track of self 2023-06-20 21:26:44 -04:00
vassago.csproj integrate swagger 2024-06-02 18:37:04 -04:00

discord-bot

copy appsettings.json to appsettings.ENV.json and fill it in. dotnet seems to understand files called appsettings.json (and appsettings.xml?) and knows how to overwrite specific values found within the .[ENV].[extension] version

auth link

https://discord.com/oauth2/authorize?client_id=913003037348491264&permissions=274877942784&scope=bot that's read messages/view channels, send messages, send messages in threads, and attach files. but not add reactions?

concepts

Data Types

Accounts

a User can have multiple Accounts. e.g., @adam:greyn.club? that's an "account". I, however, am a User. An Account has references to the Channels its seen in.

Attachment

debating whether to save a copy of every single attachment. Discord allows 25MB attachments, and shtikbot lives in several art channels.

Channel

a place where communication can happen. any level of these can have any number of children. In matrix, everything is a "room" - even spaces and threads. Seems like a fine idea. So for vassago, a discord "channel" is a channel. a "thread" is a child of that channel. a "category" is a parent of that channel. A "server" (formerly "guild") is a parent of that channel. and fuck it, Discord itself is a "channel". Includes permissions vassago has for a channel; MaxAttachmentBytes, etc. go down the hierarchy until you find an override.

FeaturePermission

the permissions of a feature. It can be restricted to accounts, to users, to channels. It has an internal name... and tag? and it can be (or not be) inheritable?

Message

a message (duh). features bools for "mentions me", the external ID, the reference to the account, the channel.

User

a person or program who operates an account. recognizing that 2 Accounts belong to 1 User can be done by that user (using LinkMe). I should be able to collapse myself automatically.

Behavior

both a "feature" and an "anti-feature". a channel might dictate something isn't allowed (lewdness in a g-rated channel). A person might not be allowed to do something - lots of me-only things like directing other bots (and the now rendered-moot Torrent feature). A behavior might need a command alias in a particular channel (freedomunits in jubel's)

so "behavior" might need to tag other data types? do I have it do a full select every time we get a message? ...no, only if the (other) triggering conditions are met. Then you can take your time.