// swad_privacy.c: users' photo and public profile visibility /* SWAD (Shared Workspace At a Distance), 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-2017 Antonio Caņ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 . */ /*****************************************************************************/ /********************************* Headers ***********************************/ /*****************************************************************************/ #include #include "swad_action.h" #include "swad_global.h" #include "swad_parameter.h" #include "swad_privacy.h" #include "swad_theme.h" /*****************************************************************************/ /************** External global variables from others modules ****************/ /*****************************************************************************/ extern struct Globals Gbl; /*****************************************************************************/ /****************************** Public constants *****************************/ /*****************************************************************************/ /***** Visibility (who can see user's photo or public profile) *****/ const char *Pri_VisibilityDB[Pri_NUM_OPTIONS_PRIVACY] = { "unknown", // Pri_VISIBILITY_UNKNOWN "user", // Pri_VISIBILITY_USER "course", // Pri_VISIBILITY_COURSE "system", // Pri_VISIBILITY_SYSTEM "world", // Pri_VISIBILITY_WORLD }; /*****************************************************************************/ /***************************** Private constants *****************************/ /*****************************************************************************/ /*****************************************************************************/ /***************************** Private prototypes ****************************/ /*****************************************************************************/ static void Pri_PutIconsPrivacy (void); static void Pri_PutFormVisibility (const char *TxtLabel, Act_Action_t Action,const char *ParamName, Pri_Visibility_t CurrentVisibilityInDB, unsigned MaskAllowedVisibility); /*****************************************************************************/ /*************** Put a link to the action to edit my privacy *****************/ /*****************************************************************************/ void Pri_PutLinkToChangeMyPrivacy (void) { extern const char *Txt_Privacy; /***** Link to edit my privacy *****/ Lay_PutContextualLink (ActEdiPri,NULL,NULL, "lock64x64.png", Txt_Privacy,Txt_Privacy, NULL); } /*****************************************************************************/ /******************************* Edit my privacy *****************************/ /*****************************************************************************/ void Pri_EditMyPrivacy (void) { extern const char *Hlp_PROFILE_Preferences_privacy; extern const char *Txt_Please_review_your_privacy_preferences; extern const char *Txt_Privacy; extern const char *Txt_Photo; extern const char *Txt_Public_profile; extern const char *Txt_Timeline; /***** If any of my preferences about privacy is unknown *****/ if (Gbl.Usrs.Me.UsrDat.PhotoVisibility == Pri_VISIBILITY_UNKNOWN || Gbl.Usrs.Me.UsrDat.ProfileVisibility == Pri_VISIBILITY_UNKNOWN) Ale_ShowAlert (Ale_WARNING,Txt_Please_review_your_privacy_preferences); /***** Start frame and table *****/ Lay_StartRoundFrameTable (NULL,Txt_Privacy,Pri_PutIconsPrivacy, Hlp_PROFILE_Preferences_privacy,2); /***** Edit photo visibility *****/ Pri_PutFormVisibility (Txt_Photo, ActChgPriPho,"VisPho", Gbl.Usrs.Me.UsrDat.PhotoVisibility, (1 << Pri_VISIBILITY_USER) | (1 << Pri_VISIBILITY_COURSE) | (1 << Pri_VISIBILITY_SYSTEM) | (1 << Pri_VISIBILITY_WORLD)); /***** Edit public profile visibility *****/ Pri_PutFormVisibility (Txt_Public_profile, ActChgPriPrf,"VisPrf", Gbl.Usrs.Me.UsrDat.ProfileVisibility, (1 << Pri_VISIBILITY_USER) | (1 << Pri_VISIBILITY_COURSE) | (1 << Pri_VISIBILITY_SYSTEM) | (1 << Pri_VISIBILITY_WORLD)); /***** Edit public activity (timeline) visibility *****/ Pri_PutFormVisibility (Txt_Timeline, ActUnk,"VisTml", Pri_VISIBILITY_SYSTEM, (1 << Pri_VISIBILITY_SYSTEM)); /***** End table and frame *****/ Lay_EndRoundFrameTable (); } /*****************************************************************************/ /***************** Put contextual icons in privacy preference ****************/ /*****************************************************************************/ static void Pri_PutIconsPrivacy (void) { /***** Put icon to show a figure *****/ Gbl.Stat.FigureType = Sta_PRIVACY; Sta_PutIconToShowFigure (); } /*****************************************************************************/ /************************** Select photo visibility **************************/ /*****************************************************************************/ static void Pri_PutFormVisibility (const char *TxtLabel, Act_Action_t Action,const char *ParamName, Pri_Visibility_t CurrentVisibilityInDB, unsigned MaskAllowedVisibility) { extern const char *The_ClassForm[The_NUM_THEMES]; extern const char *Txt_PRIVACY_OPTIONS[Pri_NUM_OPTIONS_PRIVACY]; Pri_Visibility_t Visibility; /***** Select visibility *****/ fprintf (Gbl.F.Out,"" "" "%s:" "" "", The_ClassForm[Gbl.Prefs.Theme],TxtLabel); /***** Form with list of options *****/ if (Action != ActUnk) Act_FormStart (Action); fprintf (Gbl.F.Out,""); if (Action != ActUnk) Act_FormEnd (); fprintf (Gbl.F.Out,"" ""); } /*****************************************************************************/ /************************ Get visibility from string *************************/ /*****************************************************************************/ Pri_Visibility_t Pri_GetVisibilityFromStr (const char *Str) { Pri_Visibility_t Visibility; for (Visibility = (Pri_Visibility_t) 0; Visibility < Pri_NUM_OPTIONS_PRIVACY; Visibility++) if (!strcasecmp (Str,Pri_VisibilityDB[Visibility])) return Visibility; return Pri_VISIBILITY_UNKNOWN; } /*****************************************************************************/ /**************** Get parameter with visibility from form ********************/ /*****************************************************************************/ Pri_Visibility_t Pri_GetParamVisibility (const char *ParamName) { return (Pri_Visibility_t) Par_GetParToUnsignedLong (ParamName, 0, Pri_NUM_OPTIONS_PRIVACY - 1, (unsigned long) Pri_VISIBILITY_UNKNOWN); } /*****************************************************************************/ /*********** Check if user's photo of public profile can be shown ************/ /*****************************************************************************/ // Returns true if it can be shown and false if not. bool Pri_ShowingIsAllowed (Pri_Visibility_t Visibility,struct UsrData *UsrDat) { /***** It's me? I always can see my things *****/ if (UsrDat->UsrCod == Gbl.Usrs.Me.UsrDat.UsrCod) return true; /***** System admins always can see others' profiles *****/ if (Gbl.Usrs.Me.LoggedRole == Rol_SYS_ADM) return true; /***** Check if I can see the other's photo *****/ switch (Visibility) { case Pri_VISIBILITY_UNKNOWN: return false; // It's not me case Pri_VISIBILITY_USER: // Only visible // by me and my teachers if I am a student // or me and my students if I am a teacher // Do both users share the same course but whit different role? return Usr_CheckIfUsrSharesAnyOfMyCrsWithDifferentRole (UsrDat->UsrCod); case Pri_VISIBILITY_COURSE: // Visible by users sharing courses with me // Do both users share the same course? return Usr_CheckIfUsrSharesAnyOfMyCrs (UsrDat); case Pri_VISIBILITY_SYSTEM: // Visible by any user logged in platform return Gbl.Usrs.Me.Logged; case Pri_VISIBILITY_WORLD: // Public, visible by everyone, even unlogged visitors return true; } return false; // Never reached. To avoid warning }