The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Any API call for updating a social group icon?
I've been digging for a bit, but haven't found anything concrete yet.
Basically, I just need a way to set/update a social group icon image from a separate script. Any ideas? Thanks in advance for any guidance! Cheers. |
#2
|
||||
|
||||
Call the /uploader/uploadSGIcon frontend controller. To see what parameters are passed, try inspecting the AJAX call when you go to the group channel page and then clicking Edit Group Icon that appears when you hover the group icon, and then upload an image.
You can see the code for uploadSGIcon in actionUploadSGIcon() function in /includes/vb5/frontend/controller/uploader.php. |
#3
|
|||
|
|||
Yeah, I was looking at that. Not sure what you mean by "call the controller", though. That file isn't part of the API, right?
EDIT: Oh, you mean call it by CURL or what not ... yeah that would work --------------- Added [DATE]1481137794[/DATE] at [TIME]1481137794[/TIME] --------------- Actually, after tinkering a bit, that won't work, at least not as easily, because you run into vBulletin authentication issues with the cURL request |
#4
|
||||
|
||||
You have to be logged in with the stay logged in check box clicked so that the cookies are set. Then when you call the function with curl, make sure the cookie info is included on the command line. If you are logged in and the cookie info is included, there are no authentication issues. I do it all the time.
|
#5
|
|||
|
|||
I was building this as a command line tool as it might need to run via cron, but I suppose I can make it browser based instead.
Cheers. |
#6
|
||||
|
||||
If you look into the actionUploadSGIcon() method in the controller, you would see that it is calling the upload method in the content_attach API to upload the image and then calling the update method in the content_channel API to update the social group channel with the uploaded image.
PHP Code:
|
#7
|
|||
|
|||
Yeah, that's what I ended up doing!
Cheers. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|