আমি এটি একটি অজ্যাক্স ভিউতে লিখেছি, তবে এটি বর্তমানে লগ ইন এবং লগ আউট ব্যবহারকারীর তালিকা দেওয়ার চেয়ে আরও বিস্তৃত উত্তর।
is_authenticated
অ্যাট্রিবিউট সবসময় আয় True
যেহেতু এটি শুধুমাত্র AnonymousUsers জন্য চেক, কিন্তু যে বেহুদা যদি আপনি যেখানে আপনি ব্যবহারকারীদের লগ ইন প্রয়োজন প্রদর্শিত একটি চ্যাট অ্যাপ্লিকেশন বিকাশ বলতে ছিল প্রমাণ করে আমার ব্যবহারকারীদের, যা আমি অনুমান বলে আশা করা হচ্ছে জন্য।
মেয়াদোত্তীর্ণ সেশনগুলির জন্য এটি পরীক্ষা করে এবং তারপরে ডিকোডযুক্ত _auth_user_id
বৈশিষ্ট্যের ভিত্তিতে তারা কোন ব্যবহারকারীর সাথে সম্পর্কিত তা নির্ধারণ করে :
def ajax_find_logged_in_users(request, client_url):
"""
Figure out which users are authenticated in the system or not.
Is a logical way to check if a user has an expired session (i.e. they are not logged in)
:param request:
:param client_url:
:return:
"""
# query non-expired sessions
sessions = Session.objects.filter(expire_date__gte=timezone.now())
user_id_list = []
# build list of user ids from query
for session in sessions:
data = session.get_decoded()
# if the user is authenticated
if data.get('_auth_user_id'):
user_id_list.append(data.get('_auth_user_id'))
# gather the logged in people from the list of pks
logged_in_users = CustomUser.objects.filter(id__in=user_id_list)
list_of_logged_in_users = [{user.id: user.get_name()} for user in logged_in_users]
# Query all logged in staff users based on id list
all_staff_users = CustomUser.objects.filter(is_resident=False, is_active=True, is_superuser=False)
logged_out_users = list()
# for some reason exclude() would not work correctly, so I did this the long way.
for user in all_staff_users:
if user not in logged_in_users:
logged_out_users.append(user)
list_of_logged_out_users = [{user.id: user.get_name()} for user in logged_out_users]
# return the ajax response
data = {
'logged_in_users': list_of_logged_in_users,
'logged_out_users': list_of_logged_out_users,
}
print(data)
return HttpResponse(json.dumps(data))