swad-core/swad_timeline_user.h

85 lines
3.4 KiB
C
Raw Normal View History

2021-02-11 17:20:38 +01:00
// swad_timeline_user.h: social timeline users
#ifndef _SWAD_TL_USR
#define _SWAD_TL_USR
/*
SWAD (Shared Workspace At a Distance in Spanish),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
Copyright (C) 1999-2021 Antonio Ca<EFBFBD>as Vargas
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/********************************** Headers **********************************/
/*****************************************************************************/
#include "swad_form.h"
#include "swad_media.h"
#include "swad_notification.h"
#include "swad_user.h"
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
#define TL_Usr_DEF_USRS_SHOWN 5 // Default maximum number of users shown who have share/fav a note
#define TL_Usr_MAX_USRS_SHOWN 1000 // Top maximum number of users shown who have share/fav a note
/*****************************************************************************/
/******************************** Public types *******************************/
/*****************************************************************************/
typedef enum
{
TL_Usr_TIMELINE_USR, // Show the timeline of a user
TL_Usr_TIMELINE_GBL, // Show the timeline of the users follwed by me
} TL_Usr_UsrOrGbl_t;
typedef enum
{
TL_Usr_SHOW_FEW_USRS, // Show a few first favers/sharers
TL_Usr_SHOW_ALL_USRS, // Show all favers/sharers
} TL_Usr_HowManyUsrs_t;
#define TL_Usr_NUM_FAV_SHA 3
typedef enum
{
TL_Usr_FAV_UNF_NOTE = 0,
TL_Usr_FAV_UNF_COMM = 1,
TL_Usr_SHA_UNS_NOTE = 2,
} TL_Usr_FavSha_t;
2021-02-11 17:20:38 +01:00
/*****************************************************************************/
/****************************** Public prototypes ****************************/
/*****************************************************************************/
void TL_Usr_RemoveUsrContent (long UsrCod);
void TL_Usr_GetAndShowSharersOrFavers (TL_Usr_FavSha_t FavSha,
long Cod,long UsrCod,unsigned NumUsrs,
TL_Usr_HowManyUsrs_t HowManyUsrs);
2021-02-11 17:20:38 +01:00
void TL_Usr_ShowNumSharersOrFavers (unsigned NumUsrs);
void TL_Usr_ListSharersOrFavers (MYSQL_RES **mysql_res,
2021-02-11 17:20:38 +01:00
unsigned NumUsrs,unsigned NumFirstUsrs);
bool TL_Usr_CheckICanFavSha (long Cod,long UsrCod);
bool TL_Usr_CheckIfFavedSharedByUsr (TL_Usr_FavSha_t FavSha,long Cod,long UsrCod);
unsigned TL_Usr_GetListFaversOrSharers (TL_Usr_FavSha_t FavSha,
long Cod,long UsrCod,unsigned MaxUsrs,
MYSQL_RES **mysql_res);
2021-02-11 17:20:38 +01:00
#endif