// swad_logo.c: logo of institution, centre or degree /* 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 3 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 // For string functions #include "swad_action.h" #include "swad_box.h" #include "swad_form.h" #include "swad_global.h" #include "swad_scope.h" #include "swad_theme.h" /*****************************************************************************/ /****************************** Public constants *****************************/ /*****************************************************************************/ /*****************************************************************************/ /***************************** Internal constants ****************************/ /*****************************************************************************/ /*****************************************************************************/ /****************************** Internal types *******************************/ /*****************************************************************************/ /*****************************************************************************/ /************** External global variables from others modules ****************/ /*****************************************************************************/ extern struct Globals Gbl; /*****************************************************************************/ /************************* Internal global variables *************************/ /*****************************************************************************/ /*****************************************************************************/ /***************************** Internal prototypes ***************************/ /*****************************************************************************/ /*****************************************************************************/ /****************************** Draw degree logo *****************************/ /*****************************************************************************/ void Log_DrawLogo (Hie_Level_t Scope,long Cod,const char *AltText, unsigned Size,const char *Class,bool PutIconIfNotExists) { static const char *Icon[Hie_NUM_LEVELS] = { NULL, // Hie_UNK NULL, // Hie_SYS NULL, // Hie_CTY "university.svg", // Hie_INS "building.svg", // Hie_CTR "graduation-cap.svg", // Hie_DEG NULL, // Hie_CRS }; const char *Folder = NULL; // To avoid warning char PathLogo[PATH_MAX + 1]; bool LogoFound = false; long InsCod; long CtrCod; long DegCod; /***** Path to logo *****/ if (Icon[Scope]) // Scope is correct { if (Cod > 0) // Institution, centre or degree exists { /* Degree */ if (Scope == Hie_DEG) { Folder = Cfg_FOLDER_DEG; DegCod = Cod; snprintf (PathLogo,sizeof (PathLogo), "%s/%02u/%u/logo/%u.png", Cfg_PATH_DEG_PRIVATE, (unsigned) (DegCod % 100), (unsigned) DegCod, (unsigned) DegCod); LogoFound = Fil_CheckIfPathExists (PathLogo); if (LogoFound) Cod = DegCod; } /* Centre */ if (!LogoFound && Scope != Hie_INS) { Folder = Cfg_FOLDER_CTR; if (Scope == Hie_DEG) // && !LogoFound CtrCod = Deg_GetCtrCodOfDegreeByCod (Cod); else CtrCod = Cod; snprintf (PathLogo,sizeof (PathLogo), "%s/%02u/%u/logo/%u.png", Cfg_PATH_CTR_PUBLIC, (unsigned) (CtrCod % 100), (unsigned) CtrCod, (unsigned) CtrCod); LogoFound = Fil_CheckIfPathExists (PathLogo); if (LogoFound) Cod = CtrCod; } /* Institution */ if (!LogoFound) { Folder = Cfg_FOLDER_INS; if (Scope == Hie_DEG) // && !LogoFound InsCod = Deg_GetInsCodOfDegreeByCod (Cod); else if (Scope == Hie_CTR) // && !LogoFound InsCod = Ctr_GetInsCodOfCentreByCod (Cod); else InsCod = Cod; snprintf (PathLogo,sizeof (PathLogo), "%s/%02u/%u/logo/%u.png", Cfg_PATH_INS_PUBLIC, (unsigned) (InsCod % 100), (unsigned) InsCod, (unsigned) InsCod); LogoFound = Fil_CheckIfPathExists (PathLogo); if (LogoFound) Cod = InsCod; } if (LogoFound || PutIconIfNotExists) { /***** Draw logo *****/ fprintf (Gbl.F.Out,"\"%s\""); } } } } /*****************************************************************************/ /************* Put an icon to go to the action used to request ***************/ /************* the logo of institution, centre or degree ***************/ /*****************************************************************************/ void Log_PutIconToChangeLogo (Hie_Level_t Scope) { extern const char *Txt_Change_logo; extern const char *Txt_Upload_logo; Act_Action_t Action; long Cod; const char *Folder; char PathLogo[PATH_MAX + 1]; bool LogoExists; /***** Set variables depending on scope *****/ switch (Scope) { case Hie_INS: Action = ActReqInsLog; Cod = Gbl.Hierarchy.Ins.InsCod; Folder = Cfg_FOLDER_INS; break; case Hie_CTR: Action = ActReqCtrLog; Cod = Gbl.Hierarchy.Ctr.CtrCod; Folder = Cfg_FOLDER_CTR; break; case Hie_DEG: Action = ActReqDegLog; Cod = Gbl.Hierarchy.Deg.DegCod; Folder = Cfg_FOLDER_DEG; break; default: return; // Nothing to do } /***** Check if logo exists *****/ snprintf (PathLogo,sizeof (PathLogo), "%s/%s/%02u/%u/logo/%u.png", Cfg_PATH_SWAD_PUBLIC,Folder, (unsigned) (Cod % 100), (unsigned) Cod, (unsigned) Cod); LogoExists = Fil_CheckIfPathExists (PathLogo); /***** Link for changing / uploading the logo *****/ Lay_PutContextualLinkOnlyIcon (Action,NULL,NULL, "shield-alt.svg", LogoExists ? Txt_Change_logo : Txt_Upload_logo); } /*****************************************************************************/ /**** Show a form for sending a logo of the institution, centre or degree ****/ /*****************************************************************************/ void Log_RequestLogo (Hie_Level_t Scope) { extern const char *The_ClassFormInBox[The_NUM_THEMES]; extern const char *Txt_Remove_logo; extern const char *Txt_Logo; extern const char *Txt_You_can_send_a_file_with_an_image_in_PNG_format_transparent_background_and_size_X_Y; extern const char *Txt_File_with_the_logo; long Cod; const char *Folder; Act_Action_t ActionRec; Act_Action_t ActionRem; char PathLogo[PATH_MAX + 1]; /***** Set action depending on scope *****/ switch (Scope) { case Hie_INS: Cod = Gbl.Hierarchy.Ins.InsCod; Folder = Cfg_FOLDER_INS; ActionRec = ActRecInsLog; ActionRem = ActRemInsLog; break; case Hie_CTR: Cod = Gbl.Hierarchy.Ctr.CtrCod; Folder = Cfg_FOLDER_CTR; ActionRec = ActRecCtrLog; ActionRem = ActRemCtrLog; break; case Hie_DEG: Cod = Gbl.Hierarchy.Deg.DegCod; Folder = Cfg_FOLDER_DEG; ActionRec = ActRecDegLog; ActionRem = ActRemDegLog; break; default: return; // Nothing to do } /***** Check if logo exists *****/ snprintf (PathLogo,sizeof (PathLogo), "%s/%s/%02u/%u/logo/%u.png", Cfg_PATH_SWAD_PUBLIC,Folder, (unsigned) (Cod % 100), (unsigned) Cod, (unsigned) Cod); if (Fil_CheckIfPathExists (PathLogo)) { /***** Form to remove photo *****/ fprintf (Gbl.F.Out,"
"); Lay_PutContextualLinkIconText (ActionRem,NULL,NULL, "trash.svg", Txt_Remove_logo); fprintf (Gbl.F.Out,"
"); } /***** Start form to upload logo *****/ Frm_StartForm (ActionRec); /***** Start box *****/ Box_StartBox (NULL,Txt_Logo,NULL, NULL,Box_NOT_CLOSABLE); /***** Write help message *****/ Ale_ShowAlert (Ale_INFO,Txt_You_can_send_a_file_with_an_image_in_PNG_format_transparent_background_and_size_X_Y, 64,64); /***** Upload logo *****/ fprintf (Gbl.F.Out,"", The_ClassFormInBox[Gbl.Prefs.Theme], Txt_File_with_the_logo, Fil_NAME_OF_PARAM_FILENAME_ORG, Gbl.Form.Id); /***** End box *****/ Box_EndBox (); /***** End form *****/ Frm_EndForm (); } /*****************************************************************************/ /******* Receive the logo of the current institution, centre or degree *******/ /*****************************************************************************/ void Log_ReceiveLogo (Hie_Level_t Scope) { extern const char *Txt_The_file_is_not_X; long Cod; const char *Folder; char Path[PATH_MAX + 1]; struct Param *Param; char FileNameLogoSrc[PATH_MAX + 1]; char MIMEType[Brw_MAX_BYTES_MIME_TYPE + 1]; char FileNameLogo[PATH_MAX + 1]; // Full name (including path and .png) of the destination file bool WrongType = false; /***** Set variables depending on scope *****/ switch (Scope) { case Hie_INS: Cod = Gbl.Hierarchy.Ins.InsCod; Folder = Cfg_FOLDER_INS; break; case Hie_CTR: Cod = Gbl.Hierarchy.Ctr.CtrCod; Folder = Cfg_FOLDER_CTR; break; case Hie_DEG: Cod = Gbl.Hierarchy.Deg.DegCod; Folder = Cfg_FOLDER_DEG; break; default: return; // Nothing to do } /***** Creates directories if not exist *****/ snprintf (Path,sizeof (Path), "%s/%s", Cfg_PATH_SWAD_PUBLIC,Folder); Fil_CreateDirIfNotExists (Path); snprintf (Path,sizeof (Path), "%s/%s/%02u", Cfg_PATH_SWAD_PUBLIC,Folder, (unsigned) (Cod % 100)); Fil_CreateDirIfNotExists (Path); snprintf (Path,sizeof (Path), "%s/%s/%02u/%u", Cfg_PATH_SWAD_PUBLIC,Folder, (unsigned) (Cod % 100), (unsigned) Cod); Fil_CreateDirIfNotExists (Path); snprintf (Path,sizeof (Path), "%s/%s/%02u/%u/logo", Cfg_PATH_SWAD_PUBLIC,Folder, (unsigned) (Cod % 100), (unsigned) Cod); Fil_CreateDirIfNotExists (Path); /***** Copy in disk the file received from stdin (really from Gbl.F.Tmp) *****/ Param = Fil_StartReceptionOfFile (Fil_NAME_OF_PARAM_FILENAME_ORG, FileNameLogoSrc,MIMEType); /* Check if the file type is image/jpeg or image/pjpeg or application/octet-stream */ if (strcmp (MIMEType,"image/png")) if (strcmp (MIMEType,"image/x-png")) if (strcmp (MIMEType,"application/octet-stream")) if (strcmp (MIMEType,"application/octetstream")) if (strcmp (MIMEType,"application/octet")) WrongType = true; if (WrongType) Ale_ShowAlert (Ale_WARNING,Txt_The_file_is_not_X, "png"); else { /* End the reception of logo in a temporary file */ snprintf (FileNameLogo,sizeof (FileNameLogo), "%s/%s/%02u/%u/logo/%u.png", Cfg_PATH_SWAD_PUBLIC,Folder, (unsigned) (Cod % 100), (unsigned) Cod, (unsigned) Cod); if (!Fil_EndReceptionOfFile (FileNameLogo,Param)) Ale_ShowAlert (Ale_ERROR,"Error copying file."); } } /*****************************************************************************/ /******* Remove the logo of the current institution, centre or degree ********/ /*****************************************************************************/ void Log_RemoveLogo (Hie_Level_t Scope) { long Cod; const char *Folder; char FileNameLogo[PATH_MAX + 1]; // Full name (including path and .png) of the destination file /***** Set variables depending on scope *****/ switch (Scope) { case Hie_INS: Cod = Gbl.Hierarchy.Ins.InsCod; Folder = Cfg_FOLDER_INS; break; case Hie_CTR: Cod = Gbl.Hierarchy.Ctr.CtrCod; Folder = Cfg_FOLDER_CTR; break; case Hie_DEG: Cod = Gbl.Hierarchy.Deg.DegCod; Folder = Cfg_FOLDER_DEG; break; default: return; // Nothing to do } /***** Remove logo *****/ snprintf (FileNameLogo,sizeof (FileNameLogo), "%s/%s/%02u/%u/logo/%u.png", Cfg_PATH_SWAD_PUBLIC,Folder, (unsigned) (Cod % 100), (unsigned) Cod, (unsigned) Cod); Fil_RemoveTree (FileNameLogo); }