# |
Jun 27th 2019, 15:49 |
nudl3ss |
server here |
# |
Jun 27th 2019, 15:47 |
slackebot |
<nudl3ss> |
# |
Jun 27th 2019, 15:45 |
slackebot |
<nudl3ss> |
# |
Jun 27th 2019, 15:38 |
ricksaccous |
i didn't read through the whole thing |
# |
Jun 27th 2019, 15:38 |
ricksaccous |
and you might have to hook the endpoints in with the js or something |
# |
Jun 27th 2019, 15:38 |
ricksaccous |
with that integration |
# |
Jun 27th 2019, 15:38 |
ricksaccous |
it seems like he is just providing you endpoints |
# |
Jun 27th 2019, 15:38 |
ricksaccous |
yeah of course |
# |
Jun 27th 2019, 15:37 |
nudl3ss |
@ricksaccous yeah but its only for the server, I dont think its everything ? |
# |
Jun 27th 2019, 15:37 |
ricksaccous |
@nudl3ss did you see the section about cakephp integration? |
# |
Jun 27th 2019, 15:34 |
ricksaccous |
i was hitting a redirect loop because i didn't realize cake wasn't reading my Router compatible ['plugin' => 'Whatever'] url, then i realized you need to use a special urlChecker class or something |
# |
Jun 27th 2019, 15:33 |
neon1024 |
Hah :rubberduck: |
# |
Jun 27th 2019, 15:33 |
neon1024 |
I can do that |
# |
Jun 27th 2019, 15:33 |
neon1024 |
I kinda want the value to be a closure |
# |
Jun 27th 2019, 15:33 |
neon1024 |
Just trying to avoid `telcca.dave redirected you too many times.` |
# |
Jun 27th 2019, 15:32 |
ricksaccous |
oh cool |
# |
Jun 27th 2019, 15:32 |
neon1024 |
`unauthorizedRedirect`is what I was looking for! |
# |
Jun 27th 2019, 15:32 |
ricksaccous |
@neon1024 using the component or the new plugin? |
# |
Jun 27th 2019, 15:32 |
nudl3ss |
yeah i decided to try with tus-php ... the problem is i dont know exactly how to integrate it. Its giving me headers sent already error, im not sure am I doing the client and the server right... |
# |
Jun 27th 2019, 15:31 |
neon1024 |
Where can I control the Auth failed redirect? I need to customise it based on role |
# |
Jun 27th 2019, 15:24 |
ricksaccous |
at least for this project i don't think i will |
# |
Jun 27th 2019, 15:24 |
ricksaccous |
might need this in the future but doubt it |
# |
Jun 27th 2019, 15:23 |
ricksaccous |
interesting |
# |
Jun 27th 2019, 15:23 |
ricksaccous |
ah cool i found it https://github.com/ankitpokhrel/tus-php |
# |
Jun 27th 2019, 15:22 |
jeremyharris |
tus is the way to go, it’s a protocol for resumable uploads |
# |
Jun 27th 2019, 15:17 |
ricksaccous |
also i found this http://www.resumablejs.com/ |
# |
Jun 27th 2019, 15:17 |
ricksaccous |
@nudl3ss what is tus-php? |
# |
Jun 27th 2019, 15:14 |
nudl3ss |
Hello there, I am building video uploading system and I have a little problem. I want to make resumable upload feature should internet connectivity drop or browser crash. I was looking tus-php but I couldn't integrate it right. Is anyone know something how can this resumable feature to make it work? Thank you! |
# |
Jun 27th 2019, 14:40 |
neon1024 |
Wasn’t sure that it was out of beta yet |
# |
Jun 27th 2019, 14:40 |
neon1024 |
I’ll take a look |
# |
Jun 27th 2019, 14:40 |
jeremyharris |
now I use the authorization lib and haven’t turned back. the policy stuff alone is a huge win |
# |
Jun 27th 2019, 14:39 |
jeremyharris |
yeah I’ve done prefix based roles before, works pretty well until things get complicated or require hierarchy |
# |
Jun 27th 2019, 14:39 |
neon1024 |
It’s prefix based still as I thought that would make it a bit simpler |
# |
Jun 27th 2019, 14:38 |
neon1024 |
Figured it can’t be that hard, but then I realised that I give a role access, but I need to restrict them elsewhere |
# |
Jun 27th 2019, 14:38 |
neon1024 |
Yeah, I should have done that |
# |
Jun 27th 2019, 14:38 |
jeremyharris |
@neon1024 might be worth looking into RBAC (role based access control) plugins for ideas, or the new authorization lib which has a really nice policy system which you might be able to gain insight from |
# |
Jun 27th 2019, 14:29 |
neon1024 |
Ah, I can make my own Role Auth :) |
# |
Jun 27th 2019, 14:26 |
mdotobie |
Evening @admad, per our discussion yesterday about when `Form::schema()` is called, I did not realize that `__debuginfo` is a magic method that gets called when `print_r` is used on an object. PsySH is using print_r to immediately output objects you’ve mutated or instantiated which in turn is calling the `__debuginfo` method on the Form object and within that the Schema dependency. |
# |
Jun 27th 2019, 14:24 |
neon1024 |
Kinda like a `$this->Auth->allow()` but with a value to match |
# |
Jun 27th 2019, 14:22 |
neon1024 |
Or it the controllers `isAuthorized()` perhaps, by overloading the AppController method |
# |
Jun 27th 2019, 14:22 |
neon1024 |
Or give access to controllers and manage action permission in the controller beforeFilter? |