Advanced search  

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Pages: [1]   Go Down

Author Topic: creating user galleries  (Read 3894 times)

0 Members and 1 Guest are viewing this topic.

nickfzx

  • Contributor
  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 285
creating user galleries
« on: March 09, 2007, 08:58:59 pm »

is there a way to auto create personal galleries for all the members you already have?

or in an ideal world:

is there a way to auto create personal galleries for all members who currently have images in public galleries?


context on why i want to do this:
I run a site with nearly a thousand members.
I have a little over 2000 images in the coppermine gallery...around 1200 of these images are in public galleries and the rest are in personal galleries.

I want to get rid of the public galleries altogether and move all the images that are in them into personal galleries.

The trouble is, is that most users don't have personal galleries so I want to create hundreds of personal galleries.

I am going to manually move all the images over 1 by 1 to the users newly created personal gallery - i intend on keywording them as I do so.


any help on where to start would be very welcome.
« Last Edit: March 10, 2007, 08:59:06 pm by Nibbler »
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: creating user galleries
« Reply #1 on: March 10, 2007, 11:26:49 am »

You could come up with a custom script that does the job. Not a trivial thing though, as the script needs to check if a user already has a personal gallery and only create one if not. Then it has to loop through the existing pics (based on ownership data) and move the pics inside public galleries into the personal gallery of the owner. Possible if you code it.
Logged

nickfzx

  • Contributor
  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 285
Re: creating user galleries
« Reply #2 on: March 10, 2007, 04:18:20 pm »

i may just create a personal gallery for everyone even if they do already have one...as they may not want their public images put in the same gallery they already have.

I could probably do this with PHPmyAdmin with a sql table insert maybe??
Logged

Nibbler

  • Guest
Re: creating user galleries
« Reply #3 on: March 10, 2007, 04:30:23 pm »

Yeah, change the table prefix as appropriate.

Code: [Select]
INSERT INTO cpg_albums(title, category) SELECT CONCAT(user_name, "'s gallery") , 10000 + user_id FROM cpg_users INNER JOIN cpg_pictures ON user_id = owner_id GROUP BY user_id
Logged

nickfzx

  • Contributor
  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 285
Re: creating user galleries
« Reply #4 on: March 10, 2007, 04:36:15 pm »

cool thanks Nibbler I will give this a shot on my test install and let you know if I hit any problems.
Logged

nickfzx

  • Contributor
  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 285
Re: creating user galleries
« Reply #5 on: March 10, 2007, 07:14:36 pm »

This is the output I got when i ran this:
Quote
Inserted rows: 0 (Query took 0.0069 sec)

SQL query: INSERT INTO copper_albums( title, category )
SELECT CONCAT( user_name, "'s gallery" ) , 10000 + user_id
FROM copper_users
INNER JOIN copper_pictures ON user_id = owner_id
GROUP BY user_id


don't get any errors it just says that it inserted 0 rows.  What is CONCAT?  it was lit up red in the output above.
Logged

nickfzx

  • Contributor
  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 285
Re: creating user galleries
« Reply #6 on: March 10, 2007, 07:26:02 pm »

sorry i am stupid.

I had to adapt it because I am bridged with punbb.

this is the adaptation for my installation:

Code: [Select]
INSERT INTO copper_albums(title, category) SELECT CONCAT(username, "'s gallery") , 10000 + id FROM users INNER JOIN copper_pictures ON id = owner_id GROUP BY id
worked fine although I am not 100% sure on what this is doing.

It hasn't created galleries for all the users (only a few hundred)...I think it has created them for any user who has uploaded at least 1 images.  Is this correct?
Logged

Nibbler

  • Guest
Re: creating user galleries
« Reply #7 on: March 10, 2007, 08:33:36 pm »

Yes, that's what you asked for. If it want it for all users then you can leave out the last join and the group by. You'd need to remove the albums from the first run though.
Logged

nickfzx

  • Contributor
  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 285
Re: creating user galleries
« Reply #8 on: March 10, 2007, 08:43:52 pm »

I now know what I specifically want to do...sorry for being indecisive, ( and not sure if it is possible with an sql command, at least not for me with my limited knowledge of mysql (i should really buy a book on MySQL and learn it properly).

I want to create personal albums for all members who have no uploaded images at all.

and

create personal albums for everyone who has one or more images in a public gallery (albums ID's of public galleries are: 3,6,7,8,9,10,11,12,13,14,15,16)


Sorry for flapping around with this and thanks for your help.
Logged

Nibbler

  • Guest
Re: creating user galleries
« Reply #9 on: March 10, 2007, 08:47:02 pm »

OK, so

Code: [Select]
INSERT INTO cpg_albums(title, category) SELECT CONCAT(user_name, "'s gallery") , 10000 + user_id FROM cpg_users LEFT JOIN cpg_pictures ON user_id = owner_id WHERE aid IS NULL OR aid IN (3,6,7,8,9,10,11,12,13,14,15,16) GROUP BY user_id
Logged

nickfzx

  • Contributor
  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 285
Re: creating user galleries
« Reply #10 on: March 10, 2007, 08:55:42 pm »

works perfectly, you are a hero.
Logged
Pages: [1]   Go Up
 

Page created in 0.029 seconds with 19 queries.