Foros de discusión

User login information - When a user last logged in

thumbnail
Ryan Terwedo, modificado hace 13 años.

User login information - When a user last logged in

Junior Member Mensajes: 94 Fecha de incorporación: 31/10/08 Mensajes recientes
Is there a way to see when a user last logged in or even better, a trail of all their login s?

I have poked around and unless the words I aanm searching for are wrong, I cannot find anything.

Thanks,

Ryan
thumbnail
Amos Fong, modificado hace 13 años.

RE: User login information - When a user last logged in

Liferay Legend Mensajes: 2047 Fecha de incorporación: 7/10/08 Mensajes recientes
Hey Ryan,

If you have the user object you can use this method:

	public Date getLastLoginDate() {
		return _lastLoginDate;
	}


I don't think a history is kept anywhere though.
thumbnail
Ryan Terwedo, modificado hace 13 años.

RE: User login information - When a user last logged in

Junior Member Mensajes: 94 Fecha de incorporación: 31/10/08 Mensajes recientes
Thanks... I have no idea where I would use that (Its been forever since I coded). Any help on where this would go?

Thanks!!
thumbnail
Sandeep Nair, modificado hace 13 años.

RE: User login information - When a user last logged in

Liferay Legend Mensajes: 1744 Fecha de incorporación: 6/11/08 Mensajes recientes
Hi,

As Amos said you can just retrieve only the lastloginDate of the user

If you want to find the login date of the logged in user simply use the following

PortalUtil.getUser(request).getLastLoginDate();

If you want loginDate of all users, u can call UserLocalServiceUtil.getUsers(-1,-1);
to retrieve all users in system and then use the above method in a loop.
thumbnail
Marcus Souza, modificado hace 13 años.

RE: User login information - When a user last logged in

Junior Member Mensajes: 58 Fecha de incorporación: 31/03/09 Mensajes recientes
Sandeep Nair:
Hi,

As Amos said you can just retrieve only the lastloginDate of the user

If you want to find the login date of the logged in user simply use the following

PortalUtil.getUser(request).getLastLoginDate();

If you want loginDate of all users, u can call UserLocalServiceUtil.getUsers(-1,-1);
to retrieve all users in system and then use the above method in a loop.


I am trying the same thing in a VM File
with the code

$user.getLastLoginDate() --> Mon Jan 10 16:11:47 GMT 2011

I get it, but i cant format or split it

I tried

$splittedLoginDate = $stringUtil.split($user.getLoginDate(), ' ')
$date.format('medium',$user.getLoginDate())

but i get just the same string. can someone pls point me in the right direction?

Marcus
thumbnail
Sandeep Nair, modificado hace 13 años.

RE: User login information - When a user last logged in

Liferay Legend Mensajes: 1744 Fecha de incorporación: 6/11/08 Mensajes recientes
You can use date variable to format. For example if you want to get year from date u could use something as

$date.getDate($user.getLoginDate(),"yyyy", $locale)

The above will give you year in your case 2011
thumbnail
Marcus Souza, modificado hace 13 años.

RE: User login information - When a user last logged in

Junior Member Mensajes: 58 Fecha de incorporación: 31/03/09 Mensajes recientes
It works. Thanks a lot Sandeep. Where are the library with all methodes? then I dont need to ask next time.
Marcus
thumbnail
Sandeep Nair, modificado hace 13 años.

RE: User login information - When a user last logged in

Liferay Legend Mensajes: 1744 Fecha de incorporación: 6/11/08 Mensajes recientes
Actually i am not aware. Basically what i do is i know all the variables that used in vm files are put using VelocityVariable. So i just dig Velocity Variables and then see the init.vm of unstyled theme to see, to which variable is it assigned to.
Ken Patrick, modificado hace 11 años.

RE: User login information - When a user last logged in

New Member Mensajes: 9 Fecha de incorporación: 2/11/11 Mensajes recientes
Sandeep Nair:
Actually i am not aware. Basically what i do is i know all the variables that used in vm files are put using VelocityVariable. So i just dig Velocity Variables and then see the init.vm of unstyled theme to see, to which variable is it assigned to.



I can't figure out how to get the month at all, I have it set as:

$date.getDate($user.getLoginDate(),"dd", $locale)/$date.getDate($user.getLoginDate(),"mm", $locale)/$date.getDate($user.getLoginDate(),"yyyy", $locale)


however that gets me an odd date:

20/53/2012
thumbnail
David H Nebinger, modificado hace 11 años.

RE: User login information - When a user last logged in

Liferay Legend Mensajes: 14914 Fecha de incorporación: 2/09/06 Mensajes recientes
'mm' is minute, 'MM' is month.
Ken Patrick, modificado hace 11 años.

RE: User login information - When a user last logged in

New Member Mensajes: 9 Fecha de incorporación: 2/11/11 Mensajes recientes
thank you!
thumbnail
chethan bd, modificado hace 11 años.

RE: User login information - When a user last logged in

Junior Member Mensajes: 29 Fecha de incorporación: 27/03/12 Mensajes recientes
Hi Ken Patrick,

use in this way -- $date.getDate($user.getLastLoginDate(),"dd-MM-yyyy hh:mm:ss",$locale)

Ken Patrick:

I can't figure out how to get the month at all, I have it set as:
$date.getDate($user.getLoginDate(),"dd", $locale)/$date.getDate($user.getLoginDate(),"mm", $locale)/$date.getDate($user.getLoginDate(),"yyyy", $locale)

however that gets me an odd date:
20/53/2012


BR,
Chethan
Steve Cochran, modificado hace 11 años.

RE: User login information - When a user last logged in

New Member Mensajes: 13 Fecha de incorporación: 21/08/12 Mensajes recientes
Anyone know if it possible to see this through the control panel GUI?