So this, idk. https://dailymatchup.com -- I updated the SDK, and thought that would fix it, but I'm getting a 401 from the user being... logged in currently. Which, sure, but for some reason my onMounted on the dashboard runs this in Vue
onMounted(async () => {
const user = await $getUserAccountAsync();
console.log("User", user);
if (authInfo.value || user) {
const loggedIn = connected.value;
if (loggedIn) {
console.log("Loaded and logged in, fetching articles and XML's");
articles.value = await $fetchArticles();
xmls.value = await $fetchXmls();
articles.value.sort((a, b) => {
return (
new Date(b.$createdAt).getTime() - new Date(a.$createdAt).getTime()
);
});
xmls.value.sort((a, b) => {
return (
new Date(b.$createdAt).getTime() - new Date(a.$createdAt).getTime()
);
});
articlesLoaded.value = true;
xmlsLoaded.value = true;
} else {
window.location.replace("/login");
console.log("Not logged in");
}
} else {
const user = await $getUserAccountAsync();
if (!user) {
window.location.replace("/login");
}
}
});
and that's redirecting to the login. Which also doesn't make any sense. How can someone be logged in and not at the same time??
so I checked the login function, but that just does
export const $login = async (email: string, password: string) => {
console.log("Logging in...");
let response, type;
try {
if (!$account) return { response: "No account", type: "error" };
const loggedIn = await $account.createEmailPasswordSession(email, password);
$connected.set(loggedIn);
const user = await $account.get();
$authInfo.set(user);
// if (!user.emailVerification) {
// await $account.createVerification(`https://dailymatchup.com/dashboard`);
// }
const writer = await $getDocumentFiltered(COLLECTION_WRITERS, [
Query.equal("user_id", user.$id),
]);
if (writer) {
$writerInfo.set(writer);
$writer.set(WriterDataSchema.parse(writer));
} else {
console.error("Error getting writer in login");
}
response = "Logged in";
type = "success";
} catch (error: any) {
response = error.message;
type = "error";
}
return { response: response, type: type };
};
which I also checked, the writers collection does have any read permissions. So that leave... somewhere in the middle? I'm confused as to what is happening here to be quite frank.
export const $getUserAccountAsync =
async (): Promise<Models.User<Models.Preferences> | null> => {
try {
const user = await $account.get();
$authInfo.set(user);
if (!$writer.get()) {
const writer = $writerInfo.get();
if (!writer) {
const writer = await $getUserWriterInfo(user.$id);
if (writer) {
$writerInfo.set(writer);
$writer.set(WriterDataSchema.parse(writer));
} else {
console.error("Error getting writer in $getUserAccountAsync");
}
}
}
if (!$paymentProfile.get()) {
const paymentProfile = await $getPaymentProfile(user.$id);
if (paymentProfile) $paymentProfile.set(paymentProfile);
}
return user;
} catch (error) {
return null;
}
};
Recommended threads
- 408 Timeout / Curl Error 7 in Executor w...
Hey everyone, I am losing my mind over a routing loop/timeout issue on a fresh self-hosted setup. I have a single Linux VPS (IP: 45.141.37.105) and one domain (...
- functions returning error 401 in local
I updated to 1.9.0, and the functions that used to work fine in 1.8.1 are now giving me a 401 error. I can't seem to find a solution. If anyone is running versi...
- Docker Compose MongoDB Setup
everythings work fine but the mongodb fails on startup everytime. log: ``` Generating random MongoDB keyfile... /bin/bash: line 9: : No such file or directory ...