// swad_call_for_exam_resource.c: links to calls for exams as program resources /* 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-2022 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 "swad_alert.h" #include "swad_call_for_exam.h" #include "swad_call_for_exam_resource.h" #include "swad_error.h" #include "swad_form.h" #include "swad_program_database.h" /*****************************************************************************/ /************************ Get link to call for exam **************************/ /*****************************************************************************/ void Cfe_GetLinkToCallForExam (void) { extern const char *Txt_Link_to_resource_X_copied_into_clipboard; struct Cfe_CallsForExams *CallsForExams = Cfe_GetGlobalCallsForExams (); long ExaCod; char SessionAndDate[Cfe_MAX_BYTES_SESSION_AND_DATE]; /***** Reset calls for exams context *****/ Cfe_ResetCallsForExams (CallsForExams); /***** Get the code of the call for exam *****/ if ((ExaCod = Cfe_GetParamExaCod ()) <= 0) Err_WrongCallForExamExit (); /***** Get data of call for exam *****/ Cfe_AllocMemCallForExam (CallsForExams); Cfe_GetDataCallForExamFromDB (CallsForExams,ExaCod); /***** Session and date of the exam *****/ Cfe_BuildSessionAndDate (CallsForExams,SessionAndDate); /***** Copy link to call for exam into resource clipboard *****/ Prg_DB_CopyToClipboard (PrgRsc_CALL_FOR_EXAM,ExaCod); /***** Write sucess message *****/ Ale_ShowAlert (Ale_SUCCESS,Txt_Link_to_resource_X_copied_into_clipboard, SessionAndDate); /***** Free memory of the call for exam *****/ Cfe_FreeMemCallForExam (CallsForExams); /***** Set exam to be highlighted *****/ CallsForExams->HighlightExaCod = ExaCod; /***** Show again the list of calls for exams *****/ Cfe_ListCallsForExamsEdit (); } /*****************************************************************************/ /******************* Write call for exam in course program *******************/ /*****************************************************************************/ void CfeRsc_WriteCallForExamInCrsProgram (long ExaCod,bool PutFormToGo, const char *Icon,const char *IconTitle) { extern const char *Txt_Actions[Act_NUM_ACTIONS]; struct Cfe_CallsForExams CallsForExams; char SessionAndDate[Cfe_MAX_BYTES_SESSION_AND_DATE]; char *Anchor = NULL; /***** Get session and date of the exam *****/ Cfe_ResetCallsForExams (&CallsForExams); Cfe_AllocMemCallForExam (&CallsForExams); Cfe_GetDataCallForExamFromDB (&CallsForExams,ExaCod); Cfe_BuildSessionAndDate (&CallsForExams,SessionAndDate); Cfe_FreeMemCallForExam (&CallsForExams); /***** Begin form to download file *****/ if (PutFormToGo) { /* Build anchor string */ Frm_SetAnchorStr (ExaCod,&Anchor); /* Begin form */ Frm_BeginFormAnchor (ActSeeOneCfe,Anchor); Cfe_PutHiddenParamExaCod (ExaCod); HTM_BUTTON_Submit_Begin (Txt_Actions[ActSeeOneCfe], "class=\"LM BT_LINK PRG_LNK_%s\"", The_GetSuffix ()); /* Free anchor string */ Frm_FreeAnchorStr (Anchor); } /***** Icon depending on type ******/ if (PutFormToGo) Ico_PutIconLink (Icon,Ico_BLACK,ActSeeOneCfe); else Ico_PutIconOn (Icon,Ico_BLACK,IconTitle); /***** Write Name of the course and date of exam *****/ HTM_Txt (SessionAndDate); /***** End form to download file *****/ if (PutFormToGo) { /* End form */ HTM_BUTTON_End (); Frm_EndForm (); } } /*****************************************************************************/ /************** Get call for exam text from call for exam code ***************/ /*****************************************************************************/ void CfeRsc_GetTitleFromExaCod (long ExaCod,char *Title,size_t TitleSize) { extern const char *Txt_Call_for_exam; struct Cfe_CallsForExams CallsForExams; char SessionAndDate[Cfe_MAX_BYTES_SESSION_AND_DATE]; /***** Reset calls for exams context *****/ Cfe_ResetCallsForExams (&CallsForExams); /***** Get data of call for exam *****/ Cfe_AllocMemCallForExam (&CallsForExams); Cfe_GetDataCallForExamFromDB (&CallsForExams,ExaCod); /***** Session and date of the exam *****/ Cfe_BuildSessionAndDate (&CallsForExams,SessionAndDate); snprintf (Title,TitleSize,"%s: %s",Txt_Call_for_exam,SessionAndDate); /***** Free memory of the call for exam *****/ Cfe_FreeMemCallForExam (&CallsForExams); }