Rank 2: Process
But it is not fixed to only hours also sometimes I need in minutes, so there will be so many functions execution each mins
Ok thanks
Votes
0
Replies
24
Participants
Unknown
Messages
25
Rank 2: Process
But it is not fixed to only hours also sometimes I need in minutes, so there will be so many functions execution each mins
Ok thanks
Rank 2: Process
so I need to do it like this??
Rank 2: Process
try {
await appwriteDatabases
.createDocument(
DATABASE_ID,
BANNED_USERS_COLLECTION_ID,
getUser.$id,
{
user: getUser.$id,
created: "",
reasons: "Violence",
}
)
.then(async (data) => {
const originalDateTime = new Date(data.created);
const updatedDateTime = new Date(
originalDateTime.getTime() + 5 * 60 * 60 * 1000
);
await appwriteDatabases.updateDocument(
DATABASE_ID,
BANNED_USERS_COLLECTION_ID,
getUser.$id,
{
expiry: updatedDateTime,
}
);
});
log("banning_done2");
} catch (updateDocumentError) {
log("Update document error:", updateDocumentError);
}
You can trigger a function each minute
Rank 2: Process
There is problem when creating new doc or update existing doc with same Id, Is there upsertDocument available in appwrite.
I manually need to check if doc exist ?update :create doc
There shouldn't be any need to get the servers time or time zone.
Best practice when working with remote servers is to always handle remote timestamps in UTC.
So, you can store the unban timestamp or a banned timestamp and expiry hours and then localize the time client side
Rank 2: Process
But there should be a function like appwrite.getTimestamp(), If I want to fetch some docs from now to in the past in client side using query but using functions is complicated.
If you get server timestamp client side, it will be possible to manipulate it anyways
To override the timing cooldown
That's why I recommend handling all with an Appwrite function so since it's being created server sided, it will not be possible to manipulate it to unban the user sooner than at the expected time
Rank 2: Process
No i have asked to fetch some docs for example posts from now to in the past
I understand. I thought it was to ban as said. In such case, you could get too with a function it. This seems an interesting request so I recommend to create a post in the appwrite GitHub
Edit: appwrite, not appetite. My phone autocorrect is so bugged 😆
you don't need to get the server time
Rank 2: Process
Ok, for example I need posts list of past 1 week and for this small task small query is enough like
appwrite.listDocs(...,
[
Query.greaterThan(
'created',
new Date(appwrite.serverTimestamp().setDate(appwrite.serverTimestamp().getDate() - 7)
)
]
);
why to create cloud function??
Again, no need to get the server timestamp.
Rank 2: Process
On local device??
Yes
Rank 2: Process
But user can manipulate it you can check it on your Android
So what
Rank 2: Process
By Changing date of device also if I use utc
Please don't randomly post like this
Rank 2: Process
User can access all of my database by manipulating date
Rank 2: Process
*device date
If you really care about hiding data, you'll have to either: