Search in sources :

Example 6 with Subject

use of com.remswork.project.alice.model.Subject in project classify-system by anverliedoit.

the class Teacher_GradingFactor_Activity_Midterm method onCreate.

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.teacher_gradingfactor_activity_midterm);
    final Subject subject;
    final Teacher teacher;
    try {
        subject = new SubjectServiceImpl().getSubjectById(getIntent().getExtras().getLong("subjectId"));
        teacher = new TeacherHelper(this).loadUser().get();
        linearLayoutm = (LinearLayout) findViewById(R.id.midterm_save);
        // textViewm1 = (TextView) findViewById(R.id.midterm_subjectname);
        // textViewm2 = (TextView) findViewById(R.id.txtv_midterm_percent);
        // spinnerm = (Spinner) findViewById(R.id.midterm_spinner_percent);
        textViewm3 = (TextView) findViewById(R.id.total_percentm);
        textViewm1.setText(subject.getName());
        seekBar1 = (SeekBar) findViewById(R.id.activity_seekbarm);
        seekBar1.setMax(100);
        seekBar1.setProgress(progress);
        seekBar2 = (SeekBar) findViewById(R.id.assignment_seekbarm);
        seekBar2.setMax(100);
        seekBar2.setProgress(progress);
        seekBar3 = (SeekBar) findViewById(R.id.attendance_seekbarm);
        seekBar3.setMax(100);
        seekBar3.setProgress(progress);
        seekBar4 = (SeekBar) findViewById(R.id.exam_seekbarm);
        seekBar4.setMax(100);
        seekBar4.setProgress(progress);
        seekBar5 = (SeekBar) findViewById(R.id.project_seekbarm);
        seekBar5.setMax(100);
        seekBar5.setProgress(progress);
        seekBar6 = (SeekBar) findViewById(R.id.quiz_seekbarm);
        seekBar6.setMax(100);
        seekBar6.setProgress(progress);
        textView1 = (TextView) findViewById(R.id.activity_percent_textm);
        textView2 = (TextView) findViewById(R.id.assignment_percent_textm);
        textView3 = (TextView) findViewById(R.id.attendance_percent_textm);
        textView4 = (TextView) findViewById(R.id.exam_percent_textm);
        textView5 = (TextView) findViewById(R.id.project_percent_textm);
        textView6 = (TextView) findViewById(R.id.quiz_percent_textm);
        aSwitch1 = (Switch) findViewById(R.id.activity_switch_redm);
        aSwitch2 = (Switch) findViewById(R.id.assignment_switch_redm);
        aSwitch3 = (Switch) findViewById(R.id.attendance_switch_redm);
        aSwitch4 = (Switch) findViewById(R.id.exam_switch_redm);
        aSwitch5 = (Switch) findViewById(R.id.project_switch_redm);
        aSwitch6 = (Switch) findViewById(R.id.quiz_switch_redm);
        linearLayout1 = (LinearLayout) findViewById(R.id.activty_linearm);
        linearLayout1.setVisibility(View.GONE);
        linearLayout2 = (LinearLayout) findViewById(R.id.assignment_linearm);
        linearLayout2.setVisibility(View.GONE);
        linearLayout3 = (LinearLayout) findViewById(R.id.attendance_linearm);
        linearLayout3.setVisibility(View.GONE);
        linearLayout4 = (LinearLayout) findViewById(R.id.exam_linearm);
        linearLayout4.setVisibility(View.GONE);
        linearLayout5 = (LinearLayout) findViewById(R.id.project_linearm);
        linearLayout5.setVisibility(View.GONE);
        linearLayout6 = (LinearLayout) findViewById(R.id.quiz_linearm);
        linearLayout6.setVisibility(View.GONE);
        seekBar1.setKeyProgressIncrement(5);
        seekBar2.setKeyProgressIncrement(5);
        seekBar3.setKeyProgressIncrement(5);
        seekBar4.setKeyProgressIncrement(5);
        seekBar5.setKeyProgressIncrement(5);
        seekBar6.setKeyProgressIncrement(5);
        linearLayoutm.setOnClickListener(new Button.OnClickListener() {

            @Override
            public void onClick(View v) {
                Formula formula = new Formula();
                formula.setActivityPercentage(percent[0]);
                formula.setAssignmentPercentage(percent[1]);
                formula.setAttendancePercentage(percent[2]);
                formula.setExamPercentage(percent[3]);
                formula.setProjectPercentage(percent[4]);
                formula.setQuizPercentage(percent[5]);
                try {
                    formula = new FormulaServiceImpl().addFormula(formula, subject.getId(), teacher.getId());
                } catch (GradingFactorException e) {
                    e.printStackTrace();
                }
                if (formula != null) {
                    new FormulaHelper(Teacher_GradingFactor_Activity_Midterm.this).saveUser(teacher.getId() + "-midterm", formula.getId());
                    Intent intent = new Intent(Teacher_GradingFactor_Activity_Midterm.this, SubjectViewActivity.class);
                    intent.putExtra("subjectId", subject.getId());
                    startActivity(intent);
                    finish();
                } else
                    Toast.makeText(Teacher_GradingFactor_Activity_Midterm.this, "Please try again", Toast.LENGTH_SHORT).show();
            }
        });
        ArrayAdapter<String> spinnerAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_dropdown_item, values);
        spinnerm.setAdapter(spinnerAdapter);
        aSwitch1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked) {
                    // do something when check is selected
                    linearLayout1.setVisibility(View.VISIBLE);
                } else {
                    // do something when unchecked
                    linearLayout1.setVisibility(View.GONE);
                }
                int x = 0;
                percent[0] = 0;
                for (int i = 0; i < percent.length; i++) x += percent[i];
                textViewm3.setText(x + "%");
                seekBar1.setProgress(0);
            }
        });
        aSwitch2.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked) {
                    // do something when check is selected
                    linearLayout2.setVisibility(View.VISIBLE);
                } else {
                    // do something when unchecked
                    linearLayout2.setVisibility(View.GONE);
                }
                int x = 0;
                percent[1] = 0;
                for (int i = 0; i < percent.length; i++) x += percent[i];
                textViewm3.setText(x + "%");
                seekBar2.setProgress(0);
            }
        });
        aSwitch3.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked) {
                    // do something when check is selected
                    linearLayout3.setVisibility(View.VISIBLE);
                } else {
                    // do something when unchecked
                    linearLayout3.setVisibility(View.GONE);
                }
                int x = 0;
                percent[2] = 0;
                for (int i = 0; i < percent.length; i++) x += percent[i];
                textViewm3.setText(x + "%");
                seekBar3.setProgress(0);
            }
        });
        aSwitch4.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked) {
                    // do something when check is selected
                    linearLayout4.setVisibility(View.VISIBLE);
                } else {
                    // do something when unchecked
                    linearLayout4.setVisibility(View.GONE);
                }
                int x = 0;
                percent[3] = 0;
                for (int i = 0; i < percent.length; i++) x += percent[i];
                textViewm3.setText(x + "%");
                seekBar4.setProgress(0);
            }
        });
        aSwitch5.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked) {
                    // do something when check is selected
                    linearLayout5.setVisibility(View.VISIBLE);
                } else {
                    // do something when unchecked
                    linearLayout5.setVisibility(View.GONE);
                }
                int x = 0;
                percent[4] = 0;
                for (int i = 0; i < percent.length; i++) x += percent[i];
                textViewm3.setText(x + "%");
                seekBar5.setProgress(0);
            }
        });
        aSwitch6.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked) {
                    // do something when check is selected
                    linearLayout6.setVisibility(View.VISIBLE);
                } else {
                    // do something when unchecked
                    linearLayout6.setVisibility(View.GONE);
                }
                int x = 0;
                percent[5] = 0;
                for (int i = 0; i < percent.length; i++) x += percent[i];
                textViewm3.setText(x + "%");
                seekBar6.setProgress(0);
            }
        });
        seekBar1.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

            @Override
            public void onProgressChanged(SeekBar seekBar, int i, boolean b) {
                int x = 0;
                for (int count = 0; count < percent.length; count++) {
                    if (count == 0)
                        continue;
                    x += percent[count];
                }
                if ((x + i) <= 100) {
                    percent[0] = i;
                    textView1.setText(i + "");
                    ;
                    textViewm3.setText(x + percent[0] + "%");
                } else if ((x + i) > 100) {
                    percent[0] = 100 - x;
                    textView1.setText(percent[0] + "");
                    ;
                    textViewm3.setText((x + percent[0]) + "%");
                    seekBar.setProgress(percent[0]);
                } else
                    percent[0] = 0;
            }

            @Override
            public void onStartTrackingTouch(SeekBar bar) {
            }

            @Override
            public void onStopTrackingTouch(SeekBar bar) {
            }
        });
        seekBar2.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

            @Override
            public void onProgressChanged(SeekBar seekBar, int i, boolean b) {
                int x = 0;
                for (int count = 0; count < percent.length; count++) {
                    if (count == 1)
                        continue;
                    x += percent[count];
                }
                if ((x + i) <= 100) {
                    percent[1] = i;
                    textView2.setText(i + "");
                    ;
                    textViewm3.setText(x + percent[1] + "%");
                } else if ((x + i) > 100) {
                    percent[1] = 100 - x;
                    textView2.setText(percent[1] + "");
                    ;
                    textViewm3.setText((x + percent[1]) + "%");
                    seekBar.setProgress(percent[1]);
                } else
                    percent[1] = 0;
            }

            @Override
            public void onStartTrackingTouch(SeekBar bar) {
            }

            @Override
            public void onStopTrackingTouch(SeekBar bar) {
            }
        });
        seekBar3.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

            @Override
            public void onProgressChanged(SeekBar seekBar, int i, boolean b) {
                int x = 0;
                for (int count = 0; count < percent.length; count++) {
                    if (count == 2)
                        continue;
                    x += percent[count];
                }
                if ((x + i) <= 100) {
                    percent[2] = i;
                    textView3.setText(i + "");
                    ;
                    textViewm3.setText(x + percent[2] + "%");
                } else if ((x + i) > 100) {
                    percent[2] = 100 - x;
                    textView3.setText(percent[2] + "");
                    ;
                    textViewm3.setText((x + percent[2]) + "%");
                    seekBar.setProgress(percent[2]);
                } else
                    percent[2] = 0;
            }

            @Override
            public void onStartTrackingTouch(SeekBar bar) {
            }

            @Override
            public void onStopTrackingTouch(SeekBar bar) {
            }
        });
        seekBar4.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

            @Override
            public void onProgressChanged(SeekBar seekBar, int i, boolean b) {
                int x = 0;
                for (int count = 0; count < percent.length; count++) {
                    if (count == 3)
                        continue;
                    x += percent[count];
                }
                if ((x + i) <= 100) {
                    percent[3] = i;
                    textView4.setText(i + "");
                    ;
                    textViewm3.setText(x + percent[3] + "%");
                } else if ((x + i) > 100) {
                    percent[3] = 100 - x;
                    textView4.setText(percent[3] + "");
                    ;
                    textViewm3.setText((x + percent[3]) + "%");
                    seekBar.setProgress(percent[3]);
                } else
                    percent[3] = 0;
            }

            @Override
            public void onStartTrackingTouch(SeekBar bar) {
            }

            @Override
            public void onStopTrackingTouch(SeekBar bar) {
            }
        });
        seekBar5.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

            @Override
            public void onProgressChanged(SeekBar seekBar, int i, boolean b) {
                int x = 0;
                for (int count = 0; count < percent.length; count++) {
                    if (count == 4)
                        continue;
                    x += percent[count];
                }
                if ((x + i) <= 100) {
                    percent[4] = i;
                    textView5.setText(i + "");
                    ;
                    textViewm3.setText(x + percent[4] + "%");
                } else if ((x + i) > 100) {
                    percent[4] = 100 - x;
                    textView5.setText(percent[4] + "");
                    ;
                    textViewm3.setText((x + percent[4]) + "%");
                    seekBar.setProgress(percent[4]);
                } else
                    percent[4] = 0;
            }

            @Override
            public void onStartTrackingTouch(SeekBar bar) {
            }

            @Override
            public void onStopTrackingTouch(SeekBar bar) {
            }
        });
        seekBar6.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

            @Override
            public void onProgressChanged(SeekBar seekBar, int i, boolean b) {
                int x = 0;
                for (int count = 0; count < percent.length; count++) {
                    if (count == 5)
                        continue;
                    x += percent[count];
                }
                if ((x + i) <= 100) {
                    percent[5] = i;
                    textView6.setText(i + "");
                    ;
                    textViewm3.setText(x + percent[5] + "%");
                } else if ((x + i) > 100) {
                    percent[5] = 100 - x;
                    textView6.setText(percent[5] + "");
                    ;
                    textViewm3.setText((x + percent[5]) + "%");
                    seekBar.setProgress(percent[5]);
                } else
                    percent[5] = 0;
            }

            @Override
            public void onStartTrackingTouch(SeekBar bar) {
            }

            @Override
            public void onStopTrackingTouch(SeekBar bar) {
            }
        });
    } catch (Exception e) {
        e.printStackTrace();
    }
}
Also used : SeekBar(android.widget.SeekBar) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) Teacher(com.remswork.project.alice.model.Teacher) Intent(android.content.Intent) FormulaHelper(com.lieverandiver.thesisproject.helper.FormulaHelper) TextView(android.widget.TextView) View(android.view.View) Subject(com.remswork.project.alice.model.Subject) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) Formula(com.remswork.project.alice.model.Formula) CompoundButton(android.widget.CompoundButton) Button(android.widget.Button) SubjectServiceImpl(com.remswork.project.alice.service.impl.SubjectServiceImpl) TeacherHelper(com.lieverandiver.thesisproject.helper.TeacherHelper) FormulaServiceImpl(com.remswork.project.alice.service.impl.FormulaServiceImpl) ArrayAdapter(android.widget.ArrayAdapter) CompoundButton(android.widget.CompoundButton)

Example 7 with Subject

use of com.remswork.project.alice.model.Subject in project classify-system by anverliedoit.

the class SubjectController method addSubject.

@RequestMapping(value = "add", method = RequestMethod.POST)
public String addSubject(@RequestParam("name") String name, @RequestParam("code") String code, @RequestParam("description") String description, @RequestParam("unit") int unit, ModelMap modelMap) {
    try {
        Subject subject = new Subject(name, code, description, unit);
        subjectService.addSubject(subject);
        List<Subject> subjectList = subjectService.getSubjectList();
        modelMap.put("subjectList", subjectList);
        return "subject";
    } catch (SubjectException e) {
        e.printStackTrace();
        return "error";
    }
}
Also used : SubjectException(com.remswork.project.alice.exception.SubjectException) Subject(com.remswork.project.alice.model.Subject) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 8 with Subject

use of com.remswork.project.alice.model.Subject in project classify-system by anverliedoit.

the class SubjectServiceImpl method deleteSubjectById.

@Override
public Subject deleteSubjectById(long id) throws SubjectException {
    try {
        StringBuilder uri = new StringBuilder();
        uri.append(targetProperties.getDomain());
        uri.append("/");
        uri.append(targetProperties.getBaseUri());
        uri.append("/");
        uri.append(payload);
        uri.append("/");
        uri.append(id);
        Client client = ClientBuilder.newClient();
        WebTarget target = client.target(uri.toString());
        Builder builder = target.request();
        builder.accept("application/json");
        Response response = builder.delete();
        if (response.getStatus() == 200) {
            return (Subject) response.readEntity(Subject.class);
        } else if (response.getStatus() == 400) {
            Message message = (Message) response.readEntity(Message.class);
            throw new SubjectServiceException(message.getMessage());
        } else
            throw new SubjectServiceException("The request might invalid or server is down");
    } catch (SubjectServiceException e) {
        throw new SubjectException(e.getMessage());
    }
}
Also used : Response(javax.ws.rs.core.Response) Message(com.remswork.project.alice.model.support.Message) ClientBuilder(javax.ws.rs.client.ClientBuilder) Builder(javax.ws.rs.client.Invocation.Builder) SubjectException(com.remswork.project.alice.exception.SubjectException) WebTarget(javax.ws.rs.client.WebTarget) SubjectServiceException(com.remswork.project.alice.web.service.exception.SubjectServiceException) Client(javax.ws.rs.client.Client) Subject(com.remswork.project.alice.model.Subject)

Example 9 with Subject

use of com.remswork.project.alice.model.Subject in project classify-system by anverliedoit.

the class SubjectServiceImpl method getSubjectByScheduleId.

@Override
public Subject getSubjectByScheduleId(long scheduleId) throws SubjectException {
    try {
        StringBuilder uri = new StringBuilder();
        uri.append(targetProperties.getDomain());
        uri.append("/");
        uri.append(targetProperties.getBaseUri());
        uri.append("/");
        uri.append(payload);
        Client client = ClientBuilder.newClient();
        WebTarget target = client.target(uri.toString());
        Response response = target.queryParam("scheduleId", scheduleId).request().get();
        if (response.getStatus() == 200) {
            return (Subject) response.readEntity(Subject.class);
        } else if (response.getStatus() == 404) {
            Message message = (Message) response.readEntity(Message.class);
            throw new SubjectServiceException(message.getMessage());
        } else
            throw new SubjectServiceException("The request might invalid or server is down");
    } catch (SubjectServiceException e) {
        throw new SubjectException(e.getMessage());
    }
}
Also used : Response(javax.ws.rs.core.Response) Message(com.remswork.project.alice.model.support.Message) SubjectException(com.remswork.project.alice.exception.SubjectException) WebTarget(javax.ws.rs.client.WebTarget) SubjectServiceException(com.remswork.project.alice.web.service.exception.SubjectServiceException) Client(javax.ws.rs.client.Client) Subject(com.remswork.project.alice.model.Subject)

Example 10 with Subject

use of com.remswork.project.alice.model.Subject in project classify-system by anverliedoit.

the class SubjectServiceImpl method getSubjectListByTeacherId.

@Override
public List<Subject> getSubjectListByTeacherId(long teacherId) throws SubjectException {
    try {
        StringBuilder uri = new StringBuilder();
        uri.append(targetProperties.getDomain());
        uri.append("/");
        uri.append(targetProperties.getBaseUri());
        uri.append("/");
        uri.append(payload);
        uri.append("/1");
        Client client = ClientBuilder.newClient();
        WebTarget target = client.target(uri.toString());
        Response response = target.queryParam("teacherId", teacherId).request(MediaType.APPLICATION_XML).get();
        if (response.getStatus() == 200) {
            return (List<Subject>) response.readEntity(new GenericType<List<Subject>>() {
            });
        } else if (response.getStatus() == 404) {
            Message message = (Message) response.readEntity(Message.class);
            throw new SubjectServiceException(message.getMessage());
        } else
            throw new SubjectServiceException("The request might invalid or server is down");
    } catch (SubjectServiceException e) {
        throw new SubjectException(e.getMessage());
    }
}
Also used : Response(javax.ws.rs.core.Response) GenericType(javax.ws.rs.core.GenericType) Message(com.remswork.project.alice.model.support.Message) SubjectException(com.remswork.project.alice.exception.SubjectException) List(java.util.List) WebTarget(javax.ws.rs.client.WebTarget) SubjectServiceException(com.remswork.project.alice.web.service.exception.SubjectServiceException) Client(javax.ws.rs.client.Client) Subject(com.remswork.project.alice.model.Subject)

Aggregations

Subject (com.remswork.project.alice.model.Subject)29 SubjectException (com.remswork.project.alice.exception.SubjectException)23 Message (com.remswork.project.alice.model.support.Message)20 SubjectServiceException (com.remswork.project.alice.web.service.exception.SubjectServiceException)9 Client (javax.ws.rs.client.Client)9 WebTarget (javax.ws.rs.client.WebTarget)9 Response (javax.ws.rs.core.Response)9 SubjectResourceLinks (com.remswork.project.alice.resource.links.SubjectResourceLinks)7 List (java.util.List)6 Teacher (com.remswork.project.alice.model.Teacher)5 ArrayList (java.util.ArrayList)5 AsyncTask (android.os.AsyncTask)4 Gson (com.google.gson.Gson)4 GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)4 IOException (java.io.IOException)4 InputStream (java.io.InputStream)4 HttpURLConnection (java.net.HttpURLConnection)4 URL (java.net.URL)4 ExecutionException (java.util.concurrent.ExecutionException)4 JSONArray (org.json.JSONArray)4