CSC/ECE 517 Spring 2016/E1738 Integrate Simicheck Web Service: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
Line 42: Line 42:
=== Model(s) ===
=== Model(s) ===
''There is no need to store the raw content sent to SimiCheck.
''There is no need to store the raw content sent to SimiCheck.
==== AssignmentComparisonWait ====
This model "belongs_to" the current Assignment model that already exists. It will contain as it's foreign key an assignment as well as a field for how many hours to wait after the assignment due date before executing the comparison task.


==== AssignmentSubmissionsComparisonResult ====
==== AssignmentSubmissionsComparisonResult ====

Revision as of 05:45, 17 April 2017

Team BEND - Bradford Ingersoll, Erika Eill, Nephi Grant, David Gutierrez

Problem Statement

Given that submissions to Expertiza are digital in nature, the opportunity exists to utilize tools that automate plagiarism validation. One of these such tools is called SimiCheck. SimiCheck has a web service API that can be used to compare documents and check them for plagiarism. The goal of this project is to integrate the SimiCheck API into Expertiza in order to allow for an automated plagiarism check to take place once a submission is closed. More information on the SimiCheck API can be found here.

Background

This project has been worked on before in previous semesters. However, the outcomes from these projects did not clearly demonstrate successful integration with SimiCheck from Expertiza and were not deemed production worthy. As a result, part of our project involves researching the previous submission and learning from it. In addition, based on this feedback so far we have decided to start our development from scratch and utilize the previous project as a resource for lessons learned.

Requirements

  • Create a scheduled background task that starts a configurable amount of time after the due date of an assignment has passed
  • The scheduled task should do the following:
    • Fetch the submission content using links provided by the student in Expertiza from only these sources:
      • External website or MediaWiki
        • GET request to the URL then strip HTML from the content
      • Google Doc (not sheet or slides)
        • Google Drive API
      • GitHub project (not pull requests)
        • GitHub API, will only use the student or group’s changes
    • Categorize the submission content as either a text submission or source code
    • Convert the submission content to raw text format to facilitate comparison
    • Use the SimiCheck API to check similarity among the assignment’s submissions
      • Notify the instructor that a comparison has started
      • Send the content of the submissions for each submission category
        • We will experiment with how many documents to send at a time
        • Note that each file is limited in size to 1 MB by SimiCheck
      • Wait for the SimiCheck comparison process to complete
        • We will provide SimiCheck with a callback URL to notify when the comparison is complete, however if this doesn’t work well will revert to polling
        • Will also provide an “Update Status” link to manually poll comparison status
      • Notify the assignment’s instructor that a comparison has been completed
  • Visualize the results in report
    • Will create this file: view/review_mapping/response_report.html.erb
    • Since SimiCheck has already implemented file diffs, links will be provided in the Expertiza view that lead to the SimiCheck website for each file combination
    • Comparison results for each category will be displayed within Expertiza in a table
      • Each row is a file combination with similiarity, file names, team names, and diff link
      • Sorted in descending similarity
      • Uses available data from the SimiCheck API’s summary report

Design

Pattern(s)

Given that this project revolves around integration with several web services, our team is planning to follow the facade design pattern to allow Expertiza to make REST requests to several APIs include SimiCheck, GitHub, Google Drive, etc. This pattern is commonly used to abstract complex functionalities into a simpler interface for use as well as encapsulate API changes to prevent having to update application code if the service changes or a different one is used. We feel this is appropriate based on the requirements because we can create an easy-to-use interface within Expertiza that hides the actual API integration behind the scenes. With this in place, current and future Expertiza developers can use our simplified functionality without needing to understand the miniscule details of the API’s operation.

Model(s)

There is no need to store the raw content sent to SimiCheck.

AssignmentComparisonWait

This model "belongs_to" the current Assignment model that already exists. It will contain as it's foreign key an assignment as well as a field for how many hours to wait after the assignment due date before executing the comparison task.

AssignmentSubmissionsComparisonResult

This model belongs_to the AssignmentSubmissionsComparison model. It stores the file IDs returned from SimiCheck, the percent similarity between them, and a URL to a detailed comparison (diff).

AssignmentSubmissionsComparison

This model has_many AssignmentSubmissionsComparisonResult models. It represents the results of the comparison among submissions for the assignment. As such it will contain all of the relevant fields that are shown in the view as described in the requirements.

Diagram

Typical overall system operation is shown here:

User Interface

After the results have been aggregated they will be able to be viewed via a results report page. This report will include the submissions, their corresponding teams, and the similarity results. Here is a mock up of our proposed UI:

Code Sample(s)

Coming soon...

Testing Strategy

API Testing during Development

API testing can be done outside of our code using applications like Postman. We will use this to determine which API calls to use and what our expected output will be. In addition, this will lay the groundwork for testing within Rails for the direct API calls that the Expertiza server will do.

Automated Testing within Rails

We plan on writing unit tests for any controllers and models that we create. High level testing of the controllers, models, and view together will be done with Capybara. The tests we write will be alongside the existing test framework in Expertiza.