A long time ago I ran into a website (I unfortunately lost the address, it was some kind of newspaper site) that allowed you to make use of everything as if you were a registered user. You could rate, favorite and comment articles, and when you did it would display a discreet, embedded message saying you had to register to the website for your contributions to be saved. Then it had the link for you to see how your profile would look like if you did, and I was surprised to see it had all my activity there; the articles I read and saved, comments, etc. I left the site and when I came back to it later just out of curiosity, it still had my activity saved.
I thought it was the greatest thing ever, and now that I am in the process of building a website with social features, I would like to take that approach as well. But I am still pretty much a noob and so I don't have much clue as to how to go about it. How would you do it?
I would create a
Profile
model which is automatically created for any user that visits your site and adds the first favourite, rates the first item, etc. TheProfile
should be saved to your database including a suitably random and unique string. This string can be stored as a cookie on the client side, and will be used later to retrieve your profile. It should be random and long enough so that you cannot easily tamper with your cookie and get other anonymous people's profiles, but this is not entirely avoidable (so beware you store no sensitive data in anonymous profiles!).Once a user registers, you can associate their
Profile
with their newUser
record and remove the cookie and the unique string identifier. You can now simply retrieve their profiles when they log in, based on theirUser
record.The
Profile
model can contain any information you would like to store.If you want to differentiate between registered users and anonymous users, you could create an
AnonymousProfile
model and aProfile
model (each with different attributes), and simply copy over all data from the anonymous profile to the user profile when someone registers.Update: Throughout your application you can decide to only use this information when a user is logged in. You might define a
before_filter
that grabs the current user, and only if there is an actual user logged in, do you use the profile data:Somewhere in a controller action:
You can later change the implementation of
current_profile
if you change your mind and want anonymous profiles to have effect for your anonymous users.