preparations for creating users
This commit is contained in:
		
							parent
							
								
									3fbe7eed6e
								
							
						
					
					
						commit
						48c2ef76f5
					
				
					 2 changed files with 46 additions and 16 deletions
				
			
		| 
						 | 
					@ -1,20 +1,42 @@
 | 
				
			||||||
// @ts-check
 | 
					// @ts-check
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const reg = require("../../matrix/read-registration.js")
 | 
					const assert = require("assert")
 | 
				
			||||||
const fetch = require("node-fetch").default
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
fetch("https://matrix.cadence.moe/_matrix/client/v3/register", {
 | 
					const passthrough = require("../../passthrough")
 | 
				
			||||||
	method: "POST",
 | 
					const { discord, sync, db } = passthrough
 | 
				
			||||||
	body: JSON.stringify({
 | 
					/** @type {import("../../matrix/mreq")} */
 | 
				
			||||||
 | 
					const mreq = sync.require("../../matrix/mreq")
 | 
				
			||||||
 | 
					/** @type {import("../../matrix/file")} */
 | 
				
			||||||
 | 
					const file = sync.require("../../matrix/file")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					async function registerUser(username) {
 | 
				
			||||||
 | 
						assert.ok(username.startsWith("_ooye_"))
 | 
				
			||||||
 | 
						/** @type {import("../../types").R.Registered} */
 | 
				
			||||||
 | 
						const res = await mreq.mreq("POST", "/client/v3/register", {
 | 
				
			||||||
		type: "m.login.application_service",
 | 
							type: "m.login.application_service",
 | 
				
			||||||
		username: "_ooye_example"
 | 
							username
 | 
				
			||||||
	}),
 | 
						})
 | 
				
			||||||
	headers: {
 | 
						return res
 | 
				
			||||||
		Authorization: `Bearer ${reg.as_token}`
 | 
					}
 | 
				
			||||||
	}
 | 
					
 | 
				
			||||||
}).then(res => res.text()).then(text => {
 | 
					/**
 | 
				
			||||||
	// {"user_id":"@_ooye_example:cadence.moe","home_server":"cadence.moe","access_token":"XXX","device_id":"XXX"}
 | 
					 * A sim is an account that is being simulated by the bridge to copy events from the other side.
 | 
				
			||||||
	console.log(text)
 | 
					 * @param {import("discord-api-types/v10").APIUser} user
 | 
				
			||||||
}).catch(err => {
 | 
					 */
 | 
				
			||||||
	console.log(err)
 | 
					async function createSim(user) {
 | 
				
			||||||
})
 | 
						assert.notEqual(user.discriminator, "0000", "user is not a webhook")
 | 
				
			||||||
 | 
						fetch("https://matrix.cadence.moe/_matrix/client/v3/register", {
 | 
				
			||||||
 | 
							method: "POST",
 | 
				
			||||||
 | 
							body: JSON.stringify({
 | 
				
			||||||
 | 
								type: "m.login.application_service",
 | 
				
			||||||
 | 
								username: "_ooye_example"
 | 
				
			||||||
 | 
							}),
 | 
				
			||||||
 | 
							headers: {
 | 
				
			||||||
 | 
								Authorization: `Bearer ${reg.as_token}`
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}).then(res => res.text()).then(text => {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							console.log(text)
 | 
				
			||||||
 | 
						}).catch(err => {
 | 
				
			||||||
 | 
							console.log(err)
 | 
				
			||||||
 | 
						})
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										8
									
								
								types.d.ts
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								types.d.ts
									
										
									
									
										vendored
									
									
								
							| 
						 | 
					@ -46,4 +46,12 @@ namespace R {
 | 
				
			||||||
	export type FileUploaded = {
 | 
						export type FileUploaded = {
 | 
				
			||||||
		content_uri: string
 | 
							content_uri: string
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						export type Registered = {
 | 
				
			||||||
 | 
							/** "@localpart:domain.tld" */
 | 
				
			||||||
 | 
							user_id: string
 | 
				
			||||||
 | 
							home_server: string
 | 
				
			||||||
 | 
							access_token: string
 | 
				
			||||||
 | 
							device_id: string
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue