// 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-2019 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_box.h" #include "swad_form.h" #include "swad_global.h" #include "swad_HTML.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 *****************************/ /*****************************************************************************/ #define Pri_PRIVACY_ID "privacy" /*****************************************************************************/ /***************************** 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); /*****************************************************************************/ /******************************* Edit my privacy *****************************/ /*****************************************************************************/ void Pri_EditMyPrivacy (void) { extern const char *Hlp_PROFILE_Settings_privacy; extern const char *Txt_Please_check_your_privacy_settings; extern const char *Txt_Privacy; extern const char *Txt_Photo; extern const char *Txt_Basic_public_profile; extern const char *Txt_Extended_public_profile; extern const char *Txt_Timeline; /***** Start section with settings on privacy *****/ HTM_SECTION_Begin (Pri_PRIVACY_ID); /***** If any of my settings about privacy is unknown *****/ if (Gbl.Usrs.Me.UsrDat.PhotoVisibility == Pri_VISIBILITY_UNKNOWN || Gbl.Usrs.Me.UsrDat.BaPrfVisibility == Pri_VISIBILITY_UNKNOWN || Gbl.Usrs.Me.UsrDat.ExPrfVisibility == Pri_VISIBILITY_UNKNOWN) Ale_ShowAlert (Ale_WARNING,Txt_Please_check_your_privacy_settings); /***** Begin box and table *****/ Box_StartBoxTable (NULL,Txt_Privacy,Pri_PutIconsPrivacy, Hlp_PROFILE_Settings_privacy,Box_NOT_CLOSABLE,2); /***** Edit photo visibility *****/ Pri_PutFormVisibility (Txt_Photo, ActChgPriPho,"VisPho", Gbl.Usrs.Me.UsrDat.PhotoVisibility, Pri_PHOTO_ALLOWED_VIS); /***** Edit basic public profile visibility *****/ Pri_PutFormVisibility (Txt_Basic_public_profile, ActChgBasPriPrf,"VisBasPrf", Gbl.Usrs.Me.UsrDat.BaPrfVisibility, Pri_BASIC_PROFILE_ALLOWED_VIS); /***** Edit extended public profile visibility *****/ Pri_PutFormVisibility (Txt_Extended_public_profile, ActChgExtPriPrf,"VisExtPrf", Gbl.Usrs.Me.UsrDat.ExPrfVisibility, Pri_EXTENDED_PROFILE_ALLOWED_VIS); /***** Edit public activity (timeline) visibility *****/ Pri_PutFormVisibility (Txt_Timeline, ActUnk,"VisTml", Pri_VISIBILITY_SYSTEM, Pri_TIMELINE_ALLOWED_VIS); /***** End table and box *****/ Box_EndBoxTable (); /***** End section with settings on privacy *****/ HTM_SECTION_End (); } /*****************************************************************************/ /****************** Put contextual icons in privacy setting ******************/ /*****************************************************************************/ static void Pri_PutIconsPrivacy (void) { /***** Put icon to show a figure *****/ Gbl.Figures.FigureType = Fig_PRIVACY; Fig_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_ClassFormInBox[The_NUM_THEMES]; extern const char *Txt_PRIVACY_OPTIONS[Pri_NUM_OPTIONS_PRIVACY]; Pri_Visibility_t Visibility; HTM_TR_Begin (NULL); /***** Select visibility *****/ HTM_TD_Begin ("class=\"%s RT\"",The_ClassFormInBox[Gbl.Prefs.Theme]); fprintf (Gbl.F.Out,"%s:",TxtLabel); HTM_TD_End (); /***** Form with list of options *****/ HTM_TD_Begin ("class=\"LT\""); if (Action != ActUnk) Frm_StartFormAnchor (Action,Pri_PRIVACY_ID); fprintf (Gbl.F.Out,"