Search in sources :

Example 1 with Project

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

the class ProjectResource method updateProjectById.

@PUT
@Path("{projectId}")
public Response updateProjectById(@PathParam("projectId") long id, Project newProject) {
    try {
        ProjectResourceLinks resourceLinks = new ProjectResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Project project;
        if (termId > 0)
            project = projectService.updateProjectById(id, newProject, classId, termId);
        else
            project = projectService.updateProjectById(id, newProject, classId);
        project.addLink(resourceLinks.self(project.getId()));
        if (project.get_class() != null)
            project.get_class().addLink(classResourceLinks.self(project.get_class().getId()));
        return Response.status(Response.Status.OK).entity(project).build();
    } catch (GradingFactorException e) {
        e.printStackTrace();
        Message message = new Message(400, "Bad Request", e.getMessage());
        return Response.status(Response.Status.BAD_REQUEST).entity(message).build();
    }
}
Also used : Project(com.remswork.project.alice.model.Project) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) ProjectResourceLinks(com.remswork.project.alice.resource.links.ProjectResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException)

Example 2 with Project

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

the class ProjectResource method getProjectById.

@GET
@Path("{projectId}")
public Response getProjectById(@PathParam("projectId") long id) {
    try {
        ProjectResourceLinks resourceLinks = new ProjectResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Project project = projectService.getProjectById(id);
        project.addLink(resourceLinks.self(id));
        if (project.get_class() != null)
            project.get_class().addLink(classResourceLinks.self(project.get_class().getId()));
        return Response.status(Response.Status.OK).entity(project).build();
    } catch (GradingFactorException e) {
        e.printStackTrace();
        Message message = new Message(404, "Not Found", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : Project(com.remswork.project.alice.model.Project) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) ProjectResourceLinks(com.remswork.project.alice.resource.links.ProjectResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException)

Example 3 with Project

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

the class ProjectInputActivity method onCreate.

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_z_input_project);
    init();
    buttonSubmit.setOnClickListener(new Button.OnClickListener() {

        @Override
        public void onClick(View v) {
            final long classId = getIntent().getExtras().getLong("classId");
            try {
                Project project = new Project();
                project.setTitle(!editTextName.getText().toString().trim().isEmpty() ? editTextName.getText().toString().trim() : "Project");
                project.setDate(textViewDate.getText().toString());
                if (editTextTotal.getText().toString().equals("")) {
                    toggleButtonhideandshow.setChecked(false);
                    getDialogEmptyTotal.setVisibility(View.VISIBLE);
                    recyclerViewStudentInput.setVisibility(View.GONE);
                    return;
                } else {
                    project.setItemTotal(Integer.parseInt(editTextTotal.getText().toString()));
                }
                studentAdapter.setTotalItem(project.getItemTotal());
                studentAdapter.onValidate(true);
                if (studentAdapter.isNoError()) {
                    project = projectService.addProject(project, classId, 1L);
                    for (int i = 0; i < studentList.size(); i++) {
                        // Student id
                        final long studentId = studentList.get(i).getId();
                        // 
                        int score = studentAdapter.getScore(i);
                        Student student = studentList.get(i);
                        projectService.addProjectResult(score, project.getId(), student.getId());
                        // Adding Grade for project
                        new Thread(new Runnable() {

                            @Override
                            public void run() {
                                try {
                                    final List<Project> projectList = projectService.getProjectListByClassId(classId);
                                    final double[] fProject = new double[projectList.size()];
                                    final long sId = studentId;
                                    double tempTotal = 0;
                                    try {
                                        List<Grade> tempList = gradeService.getGradeListByClass(classId, sId, 1L);
                                        grade = (tempList.size() > 0 ? tempList.get(0) : null);
                                    } catch (GradingFactorException e) {
                                        e.printStackTrace();
                                        grade = null;
                                    }
                                    if (grade == null) {
                                        Grade _grade = new Grade();
                                        grade = gradeService.addGrade(_grade, classId, studentId, 1L);
                                    }
                                    final Grade lGrade = grade;
                                    final long gradeId = grade.getId();
                                    for (int i = 0; i < fProject.length; i++) {
                                        final double total = projectList.get(i).getItemTotal();
                                        final double score = projectService.getProjectResultByProjectAndStudentId(projectList.get(i).getId(), sId).getScore();
                                        fProject[i] = (score / total) * 100;
                                    }
                                    for (int i = 0; i < fProject.length; i++) tempTotal += fProject[i];
                                    // after looping
                                    if (fProject.length > 0)
                                        tempTotal /= fProject.length;
                                    else
                                        tempTotal = 0;
                                    lGrade.setActivityScore(tempTotal);
                                    lGrade.setTotalScore(lGrade.getTotalScore() + tempTotal);
                                    gradeService.updateGradeById(gradeId, lGrade);
                                } catch (GradingFactorException e) {
                                    e.printStackTrace();
                                }
                            }
                        }).start();
                    }
                    dialogSucces.setVisibility(View.VISIBLE);
                    Toast.makeText(ProjectInputActivity.this, "Success", Toast.LENGTH_LONG).show();
                } else {
                    Toast.makeText(ProjectInputActivity.this, "Failed", Toast.LENGTH_LONG).show();
                    dialogFailed.setVisibility(View.VISIBLE);
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
}
Also used : Project(com.remswork.project.alice.model.Project) Button(android.widget.Button) ToggleButton(android.widget.ToggleButton) CompoundButton(android.widget.CompoundButton) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) ArrayList(java.util.ArrayList) List(java.util.List) Grade(com.remswork.project.alice.model.Grade) Student(com.remswork.project.alice.model.Student) View(android.view.View) CardView(android.support.v7.widget.CardView) RecyclerView(android.support.v7.widget.RecyclerView) TextView(android.widget.TextView) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException)

Example 4 with Project

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

the class ProjectAdapter method onBindViewHolder.

@Override
public void onBindViewHolder(ProjectViewHolder holder, int position) {
    Project project = projectList.get(position);
    holder.setView(project, position);
}
Also used : Project(com.remswork.project.alice.model.Project)

Example 5 with Project

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

the class ProjectServiceImpl method getProjectListByStudentId.

@Override
public List<Project> getProjectListByStudentId(final long studentId) throws GradingFactorException {
    final List<Project> projectList = new ArrayList<>();
    try {
        return new AsyncTask<String, List<Project>, List<Project>>() {

            @Override
            protected List<Project> doInBackground(String... args) {
                try {
                    String link = "".concat(domain).concat("/").concat(baseUri).concat("/").concat(payload).concat("?studentId=").concat(String.valueOf(studentId));
                    URL url = new URL(link);
                    Gson gson = new Gson();
                    HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
                    httpURLConnection.setRequestMethod("GET");
                    httpURLConnection.setRequestProperty("Content-Type", "application/json");
                    httpURLConnection.setRequestProperty("Accept", "application/json");
                    httpURLConnection.connect();
                    if (httpURLConnection.getResponseCode() == 200) {
                        InputStream inputStream = httpURLConnection.getInputStream();
                        String jsonData = "";
                        int data;
                        while ((data = inputStream.read()) != -1) {
                            jsonData += (char) data;
                        }
                        JSONArray jsonArray = new JSONArray(jsonData);
                        for (int ctr = 0; ctr < jsonArray.length(); ctr++) {
                            projectList.add(gson.fromJson(jsonArray.get(ctr).toString(), Project.class));
                        }
                        return projectList;
                    } else if (httpURLConnection.getResponseCode() == 404) {
                        InputStream inputStream = httpURLConnection.getInputStream();
                        String jsonData = "";
                        int data;
                        while ((data = inputStream.read()) != -1) {
                            jsonData += (char) data;
                        }
                        Message message = gson.fromJson(jsonData, Message.class);
                        Log.i("ServiceTAG", "Service : Project");
                        Log.i("ServiceTAG", "Status : " + message.getStatus());
                        Log.i("ServiceTAG", "Type : " + message.getType());
                        Log.i("ServiceTAG", "Message : " + message.getMessage());
                        return projectList;
                    } else
                        throw new GradingFactorException("Server Error");
                } catch (GradingFactorException e) {
                    e.printStackTrace();
                    return null;
                } catch (IOException e) {
                    e.printStackTrace();
                    return null;
                } catch (JSONException e) {
                    e.printStackTrace();
                    return null;
                }
            }
        }.execute((String) null).get();
    } catch (InterruptedException e) {
        e.printStackTrace();
        return null;
    } catch (ExecutionException e) {
        e.printStackTrace();
        return null;
    }
}
Also used : Message(com.remswork.project.alice.model.support.Message) InputStream(java.io.InputStream) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) ArrayList(java.util.ArrayList) AsyncTask(android.os.AsyncTask) JSONArray(org.json.JSONArray) Gson(com.google.gson.Gson) JSONException(org.json.JSONException) IOException(java.io.IOException) URL(java.net.URL) Project(com.remswork.project.alice.model.Project) HttpURLConnection(java.net.HttpURLConnection) ExecutionException(java.util.concurrent.ExecutionException)

Aggregations

Project (com.remswork.project.alice.model.Project)13 GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)11 Message (com.remswork.project.alice.model.support.Message)8 ArrayList (java.util.ArrayList)6 AsyncTask (android.os.AsyncTask)4 Gson (com.google.gson.Gson)4 ClassResourceLinks (com.remswork.project.alice.resource.links.ClassResourceLinks)4 ProjectResourceLinks (com.remswork.project.alice.resource.links.ProjectResourceLinks)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 JSONException (org.json.JSONException)4 Student (com.remswork.project.alice.model.Student)3 List (java.util.List)3 CardView (android.support.v7.widget.CardView)2 RecyclerView (android.support.v7.widget.RecyclerView)2 View (android.view.View)2